我想整合Struts 2,Hibernate和Spring。我用Hibernate,Spring,Spring MVC做了一个前面的示例项目。它工作得很好。现在我想用Struts 2替换Spring MVC。我有以下问题。我有一个带有字段@Autowired private UserService userService
的LoginAction类。 UserService类包含一个UserDAO字段,该字段也注释为Autowired。 UserDAO包含也注释的SessionFactory。我确信struts的情况是正确的。而applicationContext.xml也是对的。因为当我在这个文件中做一些更改时,我得到了一个例外。 Tomcat启动时没有错误,并显示登录页面。但是当我尝试调用UserService类的方法时,我得到了一个NPE,因为这个对象是null。为什么Spring没有设置这个对象?我的代码:
的applicationContext.xml:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd">
<tx:annotation-driven transaction-manager="transactionManager" />
<context:annotation-config />
<context:component-scan base-package="com"/>
<bean id="userDAO" class="com.example.dao.impl.hibernate.HibernateUserDAO" />
<bean id="userService" class="com.example.service.impl.UserServiceImpl" />
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName" value="org.h2.Driver" />
<property name="url" value="jdbc:h2:~/database" />
<property name="username" value="user" />
<property name="password" value="user" />
</bean>
<bean name="sessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="annotatedClasses">
<list>
<value>com.example.entity.User</value>
</list>
</property>
<property name="hibernateProperties">
<value>
hibernate.dialect=org.hibernate.dialect.H2Dialect
hibernate.show_sql=true
</value>
</property>
</bean>
<bean id="transactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
<welcome-file-list>
<welcome-file>/WEB-INF/pages/login.jsp</welcome-file>
</welcome-file-list>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/applicationContext.xml
</param-value>
</context-param>
</web-app>
LoginAction类:
@Controller
public class LoginAction extends ActionSupport {
private String login;
private String password;
@Autowired
private UserService userService;
@Override
public String execute() throws Exception {
User user = null;
try {
user = userService.findByLogin(login);
} catch (Exception e) {
e.printStackTrace();
}
if (user != null) {
return user.getPassword().equals(password) ? SUCCESS : ERROR;
}
return ERROR;
}
// getters and setters
}
UserService实现类:
@Service
public class UserServiceImpl implements UserService {
@Autowired
private UserDAO userDAO;
@Override
@Transactional
public User findByLogin(String login) throws SQLException {
return userDAO.findByLogin(login);
} }
UserDAO impl class:
@Repository
public class HibernateUserDAO implements UserDAO {
@Autowired
public SessionFactory sessionFactory;
@Override
public User findByLogin(String login) throws SQLException {
return sessionFactory.getCurrentSession().createCriteria(User.class)
.add(Restrictions.eq("login", login)).list().get(0);
} }
Struts的情况很好,因为它的反应是正确的。为什么Spring没有设置字段?有什么想法吗?
<struts>
<constant name="struts.devMode" value="true" />
<package name="default" namespace="/" extends="struts-default">
<action name="login" class="com.example.web.action.LoginAction">
<result name="success">/WEB-INF/pages/cabinet.jsp</result>
<result name="error">/WEB-INF/pages/login.jsp</result>
<result name="input">/WEB-INF/pages/login.jsp</result>
</action>
</package>
答案 0 :(得分:1)
你在混合东西。 Spring将创建一个上下文,因为您已声明ContextLoaderListener
,但Struts
将从struts.xml配置文件中创建自己的Action
(ActionSupport
}类堆栈。换句话说,它正在实例化自己的LoginAction
对象。
答案 1 :(得分:1)
就像@SotiriosDelimanolis所说,你是mixing
件事。你做的就是:
struts2-spring-plugin
。 NOTE:
插件的版本应与strut2版本相同。application-context.xml
中定义你的春豆,无论是明确的还是过度的组件扫描。检查是否有
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
在web.xml
玩得开心!以下是REFERENCE
的link
答案 2 :(得分:0)
您没有使用spring MVC(不在web.xml中使用调度程序servlet);你正试图在Action servlet中使用像@Controller这样的MVC api注释。这应该如何运作?