這是我的問題:我開始測試AppFuse以瞭解它是否適合我的需求。AppFuse - Spring Hibernate - 找不到當前線程的會話
所以我開始創建一個項目(AppFuse不是Light版本,不是多模塊項目)。
然後我從Persistant章節(使用Hibernate)開始,創建我的beans,daos和manager。
第一次嘗試:按照指南中的建議,我簡單地使用AppFuse助手類(GenericDaoHibernate和GenericManager)配置了dao和manager。一切正常。
第二個嘗試:我需要創建一個自定義道和一個自定義的經理來處理我的具體業務規則...教程後再次...現在我有這個問題是讓我瘋了:
> 2013-06-24
> 21:42:52.512:WARN:oejs.ServletHandler:/certificati/fornitore
> org.hibernate.HibernateException: No Session found for current thread
> at
> org.springframework.orm.hibernate4.SpringSessionContext.currentSession(SpringSessionContext.java:97)
> at
> org.hibernate.internal.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:978)
> at
> org.appfuse.dao.hibernate.GenericDaoHibernate.getSession(GenericDaoHibernate.java:86)
> at
> org.appfuse.dao.hibernate.GenericDaoHibernate.getAll(GenericDaoHibernate.java:104)
> at
> org.appfuse.service.impl.GenericManagerImpl.getAll(GenericManagerImpl.java:71)
> at
> com.alessandrodonato.webapp.controller.FornitoreController.handleRequest(FornitoreController.java:57)
爲什麼?
我把所有的類(控制器,DAO,豆類,經理)相同的封裝.webapp下( .webapp.controller,* .webapp.dao,* .webapp.dao.impl,ECC)
我的applicationContext.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"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd"
default-lazy-init="true">
<!-- Activates scanning of @Autowired -->
<context:annotation-config/>
<!-- Activates scanning of @Repository and @Service -->
<context:component-scan base-package="com.alessandrodonato"/>
<!-- Add new DAOs here --> <!-- <bean id="fornitoreDao" class="org.appfuse.dao.hibernate.GenericDaoHibernate">
<constructor-arg value="com.alessandrodonato.webapp.model.Fornitore"/>
</bean> -->
<tx:annotation-driven/>
<!-- Add new Managers here --> <bean id = "transactionManager" class = "org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name = "sessionFactory" ref = "sessionFactory" />
</bean>
</beans>
我的調度員servlet.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"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"
default-lazy-init="true">
<bean id="exceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
<property name="exceptionMappings">
<props>
<prop key="org.springframework.dao.DataAccessException">
dataAccessFailure
</prop>
</props>
</property>
</bean>
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize" value="2097152"/>
</bean>
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basename" value="ApplicationResources"/>
<property name="useCodeAsDefaultMessage" value="true"/>
</bean>
<context:component-scan base-package="com.alessandrodonato.webapp"/>
<!-- Configures the @Controller programming model -->
<mvc:annotation-driven/>
<!-- Convenient way to map URLs to JSPs w/o having a Controller -->
<mvc:view-controller path="/admin/activeUsers" view-name="admin/activeUsers"/>
<mvc:view-controller path="/mainMenu" view-name="mainMenu"/>
<!-- View Resolver for JSPs -->
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="requestContextAttribute" value="rc"/>
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/WEB-INF/pages/"/>
<property name="suffix" value=".jsp"/>
</bean>
<!-- Add additional controller beans here -->
</beans>
我頭痛長大......
你的FornitoreController看起來像什麼?換句話說,你如何注入GenericManager? –
嗨馬特,在這裏我的控制器https://code.google.com/p/certificati/source/browse/trunk/src/main/java/com/alessandrodonato/webapp/controller/FornitoreController.java – AlexD
如果您使用Autowired的資源,它的工作? –