web-注解 @Repository @Service @Controller @Component @Scope

@Repository、@Service、@Controller 和 @Component 将类标识为Bean,省却配置XML文件过程

http://blog.csdn.net/ye1992/article/details/19971467

@Repository         - DAO类

@Service              - Server类

@Controller          - controller类

@Component       - 普通类

 

上述四个bean注解 需要搭配注解@Scope("prototype")使用,该注解声明此bean多例模式,默认单例模式http://blog.csdn.net/songxingfeng/article/details/7882197

 

你可能感兴趣的:(@Controller)