先说一下结果 ,只需要在applictioncontext.xml中配置
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="configLocation" value="classpath:hibernate.cfg.xml"> </property> <property name="namingStrategy"> <bean class="com.yt17lu.ytbdqn.util.MyNamingStrategy"></bean> </property> </bean> </beans>
通过sessionFactory的namingStrategy注入属性就可以了
以下是自己的分析过程
我为了不在web容器中运行,自己new ContextLoad();
然后调用initWebApplicationContext(ServletContext ctx); 获得Spring容器
但ServletContext 容器有要先初始化, 所以创建了自己的SerlvetContext ,也就是Mock对象
(实际上 在SringTest框架中提供了MockWebApplicationContext
当后来想了一下 实际上没有这个必要,完全可以直接创建ApplicationContext 来进行测试的。SessionFactory 的创建过程与容器无关。
当然进入这种思路也是有原因的,就是该方法原本是 Configuration的方法setNamingStrategy()