- 浏览: 2474 次
- 性别:
- 来自: 北京
最新评论
文章列表
struts2与FreeMarker 简单配置实现
asm-3.1.jarasm-commons-3.1.jarcommons-fileupload-1.2.2.jarcommons-io-2.0.1.jarcommons-lang-2.5.jarcommons-logging-1.1.1.jarfreemarker-2.3.16.jarjavassist-3.11.0.GA.jarlog4j-1.2.15.jar //日志ognl-3.0.1.jarstruts2-convention-plugin-2.2.3.1.jar //注解struts2-core-2.2.3.1.ja ...
struts2与FreeMarker 简单配置实现
asm-3.1.jarasm-commons-3.1.jarcommons-fileupload-1.2.2.jarcommons-io-2.0.1.jarcommons-lang-2.5.jarcommons-logging-1.1.1.jarfreemarker-2.3.16.jarjavassist-3.11.0.GA.jarlog4j-1.2.15.jar //日志ognl-3.0.1.jarstruts2-convention-plugin-2.2.3.1.jar //注解struts2-core-2.2.3.1.ja ...
Spring中@Autowired注解、@Resource注解的区别
Spring不但支持自己定义的@Autowired注解,还支持几个由JSR-250规范定义的注解,它们分别是@Resource、@PostConstruct以及@PreDestroy。
@Resource的作用相当于@Autowired,只不过@Autowired按byType自动注入,而@Resource默认按 byName自动注入罢了。@Resource有两个属性是比较重要的,分是name和type,Spring将@Resource注解的name属性解析为bean的名字,而type属性则解析为bean的类型。所以 ...