1、@service import org.springframework.stereotype.Service; @Service 作用: 例:@Service("userService")注解是告诉spring,当Spring要创建UserServiceImpl的的实例时,bean的名字必须叫做"userService",这样当Action需要使用UserServiceImpl的的实例时,就可以由Spring创建好的"userService",然后注入给Action。 注入Dao 2、@Transactiona…