我正在尝试使用 struts2 完整休眠插件 ( http://code.google.com/p/full-hibernate-plugin-for-struts2 ) 在 struts2 示例中使用休眠。
我已将所有罐子放在我的 lib 文件夹中:
antlr-2.7.6.jar
commons-collections-3.1.jar
commons-fileupload-1.2.1.jar
commons-io-1.3.2.jar
commons-lang-2.3.jar
commons-logging-1.0.4.jar
commons-logging-api-1.1.jar
dom4j-1.6.1.jar
freemarker-2.3.15.jar
hibernate3.jar
javassist-3.9.0.GA.jar
jta-1.1.jar
jtds-1.2.4.jar
log4j-1.2.15.jar
ognl-2.7.3.jar
slf4j-api-1.5.8.jar
slf4j-log4j12-1.5.8.jar
spring-beans-2.5.6.jar
spring-context-2.5.6.jar
spring-core-2.5.6.jar
spring-test-2.5.6.jar
spring-web-2.5.6.jar
struts2-core-2.1.8.jar
struts2-fullhibernatecore-plugin-1.5-GA.jar
struts2-spring-plugin-2.1.8.jar
xwork-core-2.1.6.jar
这是我的动作类的代码:
package sample;
import org.hibernate.Session;
import data.*;
import java.util.*;
public class Events {
org.hibernate.Session hibernateSession;
public void setHibernateSession(org.hibernate.Session hibernateSession) throws Exception {
this.hibernateSession = hibernateSession;
}
public void sethibernateSession(org.hibernate.Session hibernateSession) throws Exception {
this.hibernateSession = hibernateSession;
}
@SuppressWarnings("unchecked")
public String execute() {
List<Event> events = hibernateSession.createQuery("from Event").list();
for (Event theEvent : events) {
// blah blah...
}
return "success";
}
}
我应该配置了完整的休眠插件来将休眠会话注入到我的动作类中,这个配置在 struts.xml 中:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="hibernatePlugin.sessionTarget" value="hibernateSession" />
<constant name="hibernatePlugin.transactionTarget" value="hibernateTransaction" />
..etc..
</struts>
但是我的操作类在尝试访问 hibernateSession 变量时总是失败,它始终为空。所以依赖注入似乎失败了。
任何想法为什么?请帮忙,非常感谢。还要询问您是否需要查看任何其他配置文件。