spring
iteye_1982
这个作者很懒,什么都没留下…
展开
-
关于POJO的定义
[b]POJO(Plain Old Java Object)[/b]在http://www.webopedia.com/TERM/P/POJO.htm查到解释如下:POJO, or Plain Old Java Object, is a normal Java object class (that is, not a JavaBean, EntityBean etc.) and ...原创 2010-06-17 09:53:43 · 309 阅读 · 0 评论 -
spring注释bean名头字母大小写的问题
使用spring注释形式注入bean,通过@Component、@Repository、 @Service和@Controller注释类,文档中说“注解如果没有指定bean的名字,默认为小写开头的类名”。例如类名是MyClass,则spring返回myClass的bean名。但是如果类名前两个字母都是大写,则返回的bean名也是大写,即类名是MYClass,bean名也是MYClass。...原创 2010-12-21 10:23:11 · 2861 阅读 · 2 评论 -
spring<context:component-scan>扫描包的通配符
要扫描"com.aa.dao.impl"包和 "com.aa.*.dao.impl" 包,可以用[code="java"][/code]代替[url]http://topic.csdn.net/u/20101126/09/72331d29-28f4-490b-98d0-ddfeab6b2c5e.html[/url]原创 2010-12-21 11:17:10 · 843 阅读 · 0 评论 -
编辑spring的xml文件配置时,没有提示
为了方便操作,解决办法步骤如下:1、window – preferences – myeclipse – Files and Editing - xml – xml catalog2、add按钮 i.Location: D:\share\0900_Spring\soft\spring-framework-2.5.6\dist\resources \spring-beans-2...原创 2010-06-29 17:24:10 · 135 阅读 · 0 评论 -
applicationContext.xml配置
ZK+spring+hibernate+log4j的web.xml配置:[code="xml"] webAppRootKey root org.springframework.web.util.Log4jConfigListener org.springframework.web.context.ContextLoaderListe...原创 2011-03-03 16:02:45 · 228 阅读 · 0 评论 -
(转)Spring编程式事务
[b][list][*]PlatformTransactionManager[*]TransactionTemplate[/list][/b][b][color=blue]一、使用PlatformTransactionManager[/color][/b][code="xml"] ...原创 2011-03-28 11:37:40 · 84 阅读 · 0 评论