springmvc aop 注解 controller引用起到什么作用

2024-12-01 08:07:57
推荐回答(1个)
回答1:

Spring MVC 在 Spring 2.5 发布中新添加了一种基于注解的 Controller 形式。借助于与 Spring 2.5 一同发布的容器内 功能支持,基于注解的 Controller 几乎可以达到 XML 零配置,进而极大地提高我们的开发效率。
如果 Web 应用程序采用了经典的三层分层结构的话,最好在持久层、业务层和控制层分别采用 @Repository、@Service和 @Controller 对分层中的类进行注释,而用 @Component 对那些比较中立的类进行注释。