- 浏览: 240034 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
王飞飞飞:
...
open Explorer eclipse plugin -
ZLHRoar:
very good!
open Explorer eclipse plugin -
skyline0813:
So cool!
open Explorer eclipse plugin -
skyline0813:
...
open Explorer eclipse plugin -
sdylag:
不错,很实用,谢谢分享。
open Explorer eclipse plugin
通常,spring整合Hibernate的SessionFactory是这样做的:
<property name="annotatedClasses"> <list><value>com.systop.common.core.dao.testmodel.TestDept</value></list> </property> <property name="mappingLocations"> <list><value>classpath*:org/jbpm/**/*.hbm.xml</value></list> </property>
Spring可以根据mappingLocations属性中定义的Path
Pattern自动加载hbm文件,但是对于annotatedClasses则只能一个一个的苦恼的写上去。无论是Hibernate还是
Spring,都不能自动的加载某个package下的Anntated
Classes。这样,一旦项目需要重构或者增加/减少Tables就会带来一些麻烦。尤其是对于那些已经打包的应用来说更是如此。
能不能让Spring自动加载AnnotatedClasses呢,我想到了Spring2.5中component-scan,于是便照猫画虎的写了一个AnnotationSessionFactoryBean的子类:
package com.systop.common.core.dao.hibernate; import java.io.IOException; import java.util.HashSet; import java.util.Set; import javax.persistence.Entity; import org.apache.oro.text.regex.MalformedPatternException; import org.apache.oro.text.regex.Pattern; import org.apache.oro.text.regex.PatternCompiler; import org.apache.oro.text.regex.PatternMatcher; import org.apache.oro.text.regex.Perl5Compiler; import org.apache.oro.text.regex.Perl5Matcher; import org.hibernate.HibernateException; import org.hibernate.cfg.AnnotationConfiguration; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.core.io.Resource; import org.springframework.core.io.support.PathMatchingResourcePatternResolver; import org.springframework.core.io.support.ResourcePatternResolver; import org.springframework.core.type.classreading.CachingMetadataReaderFactory; import org.springframework.core.type.classreading.MetadataReader; import org.springframework.core.type.classreading.MetadataReaderFactory; import org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean; import org.springframework.util.ClassUtils; import org.springframework.util.CollectionUtils; import com.systop.common.core.exception.ApplicationException; @SuppressWarnings("unchecked") public class AnnotationSessionFactoryBeanEx extends AnnotationSessionFactoryBean { private static final Logger logger = LoggerFactory .getLogger(AnnotationSessionFactoryBeanEx.class); /** * The locations of the hibernate enity class files. They are often some of the string with * Sping-style resource. A ".class" subfix can make the scaning more precise. * <p> example: * <pre> * classpath*:com/systop/** /model/*.class * </pre> */ private String[] annotatedClassesLocations; /** * Which classes are not included in the session. * They are some of the regular expression. */ private String[] excludedClassesRegexPatterns; /** * @param annotatedClassesLocations the annotatedClassesLocations to set */ public void setAnnotatedClassesLocations(String[] annotatedClassesLocations) { this.annotatedClassesLocations = annotatedClassesLocations; } /** * @see AnnotationSessionFactoryBean#postProcessAnnotationConfiguration(org.hibernate.cfg.AnnotationConfiguration) */ @Override protected void postProcessAnnotationConfiguration(AnnotationConfiguration config) throws HibernateException { Set<Class> annClasses = scanAnnotatedClasses(); //Scan enity classes. // Add entity classes to the configuration. if (!CollectionUtils.isEmpty(annClasses)) { for (Class annClass : annClasses) { config.addAnnotatedClass(annClass); } } } /** * Scan annotated hibernate classes in the locations. * @return Set of the annotated classes, if no matched class, return empty Set. */ private Set<Class> scanAnnotatedClasses() { ResourcePatternResolver resourcePatternResolver = new PathMatchingResourcePatternResolver(); MetadataReaderFactory metadataReaderFactory = new CachingMetadataReaderFactory( resourcePatternResolver); Set<Class> annotatedClasses = new HashSet<Class>(); if (annotatedClassesLocations != null) { try { for (String annClassesLocation : annotatedClassesLocations) { //Resolve the resources Resource[] resources = resourcePatternResolver.getResources(annClassesLocation); for (Resource resource : resources) { MetadataReader metadataReader = metadataReaderFactory.getMetadataReader(resource); String className = metadataReader.getClassMetadata().getClassName(); //If the class is hibernate enity class, and it does not match the excluded class patterns. if (isEntityClass(metadataReader) && !isExcludedClass(className)) { Class clazz = ClassUtils.forName(className); annotatedClasses.add(clazz); logger.debug("A entity class has been found. \n({})", clazz.getName()); } } } } catch (IOException e) { logger.error("I/O failure during classpath scanning, ({})", e.getMessage()); e.printStackTrace(); throw new ApplicationException(e); } catch (ClassNotFoundException e) { logger.error("Class not found, ({})", e.getMessage()); e.printStackTrace(); throw new ApplicationException(e); } catch (LinkageError e) { logger.error("LinkageError ({})", e.getMessage()); e.printStackTrace(); throw new ApplicationException(e); } } return annotatedClasses; } /** * @return True if the given MetadataReader shows * that the class is annotated by <code>javax.persistence.Enity</code> */ private boolean isEntityClass(MetadataReader metadataReader) { Set<String> annTypes = metadataReader.getAnnotationMetadata().getAnnotationTypes(); if (CollectionUtils.isEmpty(annTypes)) { return false; } return annTypes.contains(Entity.class.getName()); } /** * * @return True if the given class name match the excluded class patterns. */ private boolean isExcludedClass(String className) { if (excludedClassesRegexPatterns == null) { // All class is included. return false; } PatternCompiler compiler = new Perl5Compiler(); PatternMatcher matcher = new Perl5Matcher(); try { for (String regex : excludedClassesRegexPatterns) { //Test each patterns. logger.debug("Pattern is: {}", regex); Pattern pattern = compiler.compile(regex); if (matcher.matches(className, pattern)) { logger.debug("class [{}], matches [{}], so it is excluded.", className, pattern .getPattern()); return true; } } } catch (MalformedPatternException e) { logger.warn("Malformed pattern [{}]", e.getMessage()); } return false; } /** * @param exculdePatterns the exculdePatterns to set */ public void setExcludedClassesRegexPatterns(String[] excludedClassesRegexPatterns) { this.excludedClassesRegexPatterns = excludedClassesRegexPatterns; } }
在Spring的配置文件中这样写:
<bean id="sessionFactory" class="com.systop.common.core.dao.hibernate.AnnotationSessionFactoryBeanEx"> <property name="dataSource" ref="dataSource"/> <property name="annotatedClassesLocations"> <list> <value>classpath*:com/systop/**/model/*.class</value> </list> </property> <!--用正则表达式匹配不被scan的类--> <property name="excludedClassesRegexPatterns"> <list> <value><![CDATA[^[\w\.]+Test[\w]+$]]></value> </list> </property> </bean>
好了,一劳永逸!
哦,对了,提醒一下,上述代码使用了Spring2.5中的一些API,另外还有apache oro的正则表达式API。
发表评论
-
ora-01000:超出打开游标的最大数
2012-01-16 17:23 1089最近在项目中用到了apac ... -
tomcat 移植到weblogic session 为null 问题
2011-07-14 12:14 1206tomcat weblogic session null ... -
开发人员必备的开发工具
2011-07-14 09:48 01、IDE(eclipse) eclipse 目前普遍流行的 ... -
java 中PermGen space解决方案
2011-06-20 10:25 1505PermGen space 的全称是 Permanent ... -
解决response返回字符串乱码问题
2010-11-18 15:06 3526今天下午发了几个小时时间,查找response返回到页面的js ... -
tomcat 405 Method Not Allowed post 错误
2010-11-17 11:50 9237Http请求状态: 状态代码 状态信息 含义 100 ... -
open Explorer eclipse plugin
2010-10-21 17:14 3930最近写了一个eclipse 小插件,支持最新的eclipse3 ... -
关于java.lang.OutOfMemoryError: nativeGetNewTLA
2009-12-31 22:54 5725参考http://www.blogjava.net/a ... -
关于jstl问题Static attribute must be a String literal
2009-12-15 16:59 3259关于jstl “Static attribute must b ... -
spring2.5org.xml.sax.SAXParseException: src-import.0:
2009-07-31 12:42 1921公司的以前的项目中要使用spring进行bean的管理,在 导 ... -
struts1 与spring集成方式
2009-07-28 15:35 0struts1与spring集成的方式 ... -
关于hibernate的缓存使用
2009-04-30 09:04 745转载至http://blog.csdn.net/woshi ... -
Hibernate性能优化
2009-04-30 08:57 1315在处理大数据量时,会 ... -
hibernate查询语言hql
2009-04-30 08:55 845在hql中关键字不区分大小写,但是属性和类名区分大小写 ... -
Unable to find a value ...using operator "."
2008-04-29 09:27 4390javax.servlet.jsp.el.ELExceptio ... -
定时执行任务的三种方法
2007-03-28 16:19 1318文章有些内容显示不全,请访问http://blog.csdn. ...
相关推荐
10. 实现业务接口以及在applicationContext.xml中配置相应的bean,以让Spring容器管理这些业务对象。 11. 为项目添加JUnit测试支持,通过编写测试类和测试方法来验证业务逻辑的正确性。 12. 将SpringMVC整合到已经...
- 映射文件或注解(Annotated Classes):指定与数据库表对应的实体类。 4. 创建实体类。这些实体类将代表数据库中的表。可以通过注解或者XML映射文件来指定类与数据库表的映射关系。 5. 编写操作数据库的代码。...
这个特定的"Annotated Database"包含了240幅图像,每幅图像都经过了专业的标注,这意味着图像上的关键特征如眼睛、鼻子、嘴巴等都有精确的位置标记,这极大地促进了算法的训练和性能评估。 在人脸识别领域,数据库...
3. 在“Mapping Strategy”部分,选择“Annotated Java Classes”,这将生成带有注解的POJO类。 4. “Generation Options”中,你可以决定是否生成equals()、hashCode()和toString()方法,以及其他自定义选项。 5. ...
Following this, you will explore how to implement the request handling layer using Spring annotated controllers. Other highlights include learning how to build the Java DAO implementation layer by ...
IMM Annotated Database是一个专为人脸识别研究而设计的数据库,包含240幅精心标注的人脸图像。这个数据库在人脸识别领域具有重要的价值,因为它提供了一组标准化、有标记的图像,可供研究人员进行算法开发、测试和...
源码中可以看到Spring如何封装数据库连接和事务管理,提供了一种声明式的方式,让开发者无需直接处理低级别的数据库操作。 在系统开源的标签下,Spring 0.9的源码阅读也为我们展示了开源软件的设计和开发流程。开源...
11.1. Integrating Hibernate with Spring 11.1.1. Declaring a Hibernate session factory 11.1.2. Building Spring-free Hibernate 11.2. Spring and the Java Persistence API 11.2.1. Configuring an entity ...
《The Annotated Turing》是由Charles Petzold撰写的一本经典计算机科学著作,它深入解析了艾伦·图灵在1936年提出的图灵机模型,并以此为基础探讨了计算理论的基础。这本书对于理解计算机科学的基本原理至关重要,...
隐式调度是指由μC++内核自动管理的任务调度,适用于那些对响应时间和确定性有较高要求的场景。 ##### 2.9.2 外部调度 外部调度允许开发者直接控制任务的执行时机,通常用于需要更高层次控制的应用场景。 #### ...
The Annotated C++ Reference Manual 一共四个压缩包
redis-3.0-annotated-unstable.zipredis-3.0-annotated-unstable.zipredis-3.0-annotated-unstable.zipredis-3.0-annotated-unstable.zip
The Annotated C++ Reference Manual.part2
The Common Language Infrastructure Annotated Standard
5. **更多数据访问支持**:Spring 2.5增强了对JDBC、Hibernate、JPA等持久化技术的支持,提供了更简便的数据访问抽象,如JdbcTemplate和HibernateTemplate。 6. **国际化(Internationalization,i18n)**:Spring ...
### 使用Hibernate逆向生成实体类的方法 在Java开发领域中,Hibernate作为一种流行的ORM(对象关系映射)框架,被广泛应用于将对象模型映射到基于SQL的关系型数据库上。通过Hibernate,开发者能够更加高效地处理...
根据提供的文件信息,以下是对文件《Thinking in Java 4th Edition Annotated Solutions Guide》中所包含知识点的详细解释: 首先,文件标题《Thinking in Java 4th Edition Annotated Solutions Guide》指出了这是...
《Annotated Lucene 中文版 Lucene源码剖析》是一本深入探讨Apache Lucene的书籍,专注于源码解析,帮助读者理解这个强大的全文搜索引擎库的工作原理。Lucene是一款开源的Java库,它提供了高效的文本搜索功能,被...