MyEclipse 配置SSH (Struts2.1 Spring3.1 Hibernate4.1)

问题描述

在MyEclipse中,配置JSP开发用的SSH架构。


运行环境:

MyEclipse10.6    Struts2.1    Spring3.1    Hibernate4.1    JDK6


解决方案:

1.打开,新建一个Web Project项目。

MyEclipse 配置SSH (Struts2.1 Spring3.1 Hibernate4.1)_第1张图片


2.在包视图中,右击项目,添加SSH库

首先添加Struts2.1库,过程依次如下图。

MyEclipse 配置SSH (Struts2.1 Spring3.1 Hibernate4.1)_第2张图片MyEclipse 配置SSH (Struts2.1 Spring3.1 Hibernate4.1)_第3张图片

点击完成后,继续右击选择配置Spring3.1,过程如下图。

MyEclipse 配置SSH (Struts2.1 Spring3.1 Hibernate4.1)_第4张图片

MyEclipse 配置SSH (Struts2.1 Spring3.1 Hibernate4.1)_第5张图片

同样点击完成,接着继续右击配置 ,其过程如下图所列。

MyEclipse 配置SSH (Struts2.1 Spring3.1 Hibernate4.1)_第6张图片

MyEclipse 配置SSH (Struts2.1 Spring3.1 Hibernate4.1)_第7张图片

MyEclipse 配置SSH (Struts2.1 Spring3.1 Hibernate4.1)_第8张图片

MyEclipse 配置SSH (Struts2.1 Spring3.1 Hibernate4.1)_第9张图片

MyEclipse 配置SSH (Struts2.1 Spring3.1 Hibernate4.1)_第10张图片

点击完成。


3.修改web.xml文件

打开项目中的web.xml(WebRoot/WEB-INF/web.xml),添加以下内容到该文件(添加在标签web-app内部)中,并保存。

    
        contextConfigLocation
        classpath:/applicationContext.xml
    
    
        
            org.springframework.web.context.ContextLoaderListener
        
   	
添加后的web.xml类似以下内容。



  
   
        contextConfigLocation
        classpath:/applicationContext.xml
    
    
        
            org.springframework.web.context.ContextLoaderListener
        
   	
  
    index.jsp
  
  
  	struts2
  	
  		org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
  	
  
  
  	struts2
  	*.action
  


4.部署项目到服务器并运行。


可能问题:

P1.

Line: 220 - com/opensymphony/xwork2/spring/SpringObjectFactory.java:220:-1

Caused by: java.lang.NullPointerException

S1.

出现这个问题,可能是没有把Spring的监听添加到web.xml文件中。若如此,需执行解放方案中的步骤4后再尝试。


P2.

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in class path resource [applicationContext.xml]: Invocation of init method failed; nested exception is java.lang.NoClassDefFoundError: org/hibernate/context/CurrentSessionContext

Caused by: java.lang.NoClassDefFoundError: org/hibernate/context/CurrentSessionContext

Caused by: java.lang.ClassNotFoundException: org.hibernate.context.CurrentSessionContext

S2.

这个问题,Spring3.1以后的版本比较支持Hibernate4.x,而在使用Spring3.0以及其以前版本时,会出现。

因此需升级Spring的版本,或者修改配置文件中Spring与Hibernate的相关的类名。

你可能感兴趣的:(web_jsp)