`
紫_色
  • 浏览: 144184 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

java Spring-3.2.0+Struts-2.3.4+Hibernate-4.1.6整合

    博客分类:
  • J2EE
阅读更多

我的前一篇博文讲了Spring-3.2.0+Struts2.3.4+JPA2.0整合,其所需的jar包与Spring-3.2.0 +Struts-2.3.4+Hibernate-4.1.6所需的jar包基本相同.下面列出SSH整合所需要的jar包.


 

 如上图所示是Spring-3.2.0 +Struts-2.3.4+Hibernate-4.1.6的jar包,这些jar包在各官网上都有提供下载:

Spring的jar包下载地址:http://www.springsource.org/spring-community-download(需要填写一些信息)

Hibernate的jar包下载地址:http://www.hibernate.org/downloads.html

Struts的jar包下载地址:http://struts.apache.org/download.cgi

 

注意在jar包整合,由于spring的jar已经相应独立开,还有其它jar也不同,所以要注意相关jar包的版本,不要以为包引多了没关系,jar冲突和版本不同也会导致整合失败.另外用MyEclipse(Eclipse)新建项目时会自动引入J2EE相关的jar包,建议删除,手动引入.

 

 

下面使用MySQL做演示:

首先我们在(src)下新建jdbc.properties文件用来配置数据库基本信息,其内容如下:

 

jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3306/shopping
jdbc.username=root
jdbc.password=619100

 

 

然后我们新建Spring配置文件beans.xml,将其放入在classpath(src)下,其内容如下:

 

<?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:aop="http://www.springframework.org/schema/aop"
	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/aop
           http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
           http://www.springframework.org/schema/tx
           http://www.springframework.org/schema/tx/spring-tx-3.2.xsd">
	
	<context:annotation-config/>
	<!-- 声明Spring要管理的范围 -->
	<context:component-scan base-package="gd.hz.shopping" />
	
	<!-- 读取jdbc.properties配置文件 -->
	<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
		<property name="locations">
			<value>classpath:jdbc.properties</value>
		</property>
	</bean>
	<bean id="dataSource" destroy-method="close"
		class="org.apache.commons.dbcp.BasicDataSource">
		<property name="driverClassName"
			value="${jdbc.driverClassName}" />
		<property name="url" value="${jdbc.url}" />
		<property name="username" value="${jdbc.username}" />
		<property name="password" value="${jdbc.password}" />
	</bean>

	<!-- 创建sessionFactory -->
	<bean id="sessionFactory"
		class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
		<property name="dataSource" ref="dataSource" />
		<property name="packagesToScan">
			<list>
				<!-- 需要映射的实体类,指定到实体类所在的包即可 -->
				<value>gd.hz.shopping.model</value>
			</list>
		</property>
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.format_sql">true</prop>
	        
		        <prop key="dialect">org.hibernate.dialect.MySQLDialect</prop>
		      	
		        <prop key="hibernate.show_sql">true</prop>
		      	
		        <prop key="current_session_context_class">thread</prop>
		      	
		        <prop key="connection.pool_size">3</prop>
		        
		        <prop key="hibernate.hbm2ddl.auto">update</prop>
		        
		        <prop key="javax.persistence.validation.mode">none</prop>
		        
		        <prop key="hibernate.current_session_context_class">org.springframework.orm.hibernate4.SpringSessionContext</prop>
			</props>
		</property>
	</bean>
	
	<!-- 开启事务管理 -->
	<bean id="txManager"
		class="org.springframework.orm.hibernate4.HibernateTransactionManager">
		<property name="sessionFactory" ref="sessionFactory" />
	</bean>
	<aop:config>
		<aop:pointcut id="bussinessService"
			expression="execution(public * gd.hz.shopping.service.*.*(..))" />
		<aop:advisor pointcut-ref="bussinessService"
			advice-ref="txAdvice" />
	</aop:config>
	
	<!-- 使用声明式事务 -->
	<tx:advice id="txAdvice" transaction-manager="txManager">
		<tx:attributes>
			<tx:method name="find*" read-only="true" propagation="REQUIRED" />
			<tx:method name="save*" propagation="REQUIRED"/>
			<tx:method name="modify*" propagation="REQUIRED"/>
			<tx:method name="remove*" propagation="REQUIRED"/>
		</tx:attributes>
	</tx:advice>
	 
</beans>

 

 

 

新建我们的struts配置文件struts.xml,内容如下:

 

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd">

<struts>
	<constant name="struts.devMode" value="true" />
	<constant name="struts.i18n.encoding" value="UTF-8" />
</struts>
	

 

 

 

然后配置我们的web.xml文件:

 

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
	http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">

	<!-- 加载Spring配置文件 -->
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath:beans.xml</param-value>
	</context-param>
	
	<!-- ContextLoaderListener的作用就是启动Web容器时,自动装配ApplicationContext的配置信息。 -->
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>

	<!-- 指定字符集 -->
	<filter>
		<filter-name>encodingFilter</filter-name>
		<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
		<init-param>
			<param-name>encoding</param-name>
			<param-value>UTF-8</param-value>
		</init-param>
	</filter>
	<filter-mapping>
		<filter-name>encodingFilter</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>

	<!-- 保持session到页面 -->
	<filter>
		<filter-name>openSessionInView</filter-name>
		<filter-class>org.springframework.orm.hibernate4.support.OpenSessionInViewFilter</filter-class>
		<init-param>
			<param-name>sessionFactoryBeanName</param-name>
			<param-value>sessionFactory</param-value>
		</init-param>
	</filter>
	<filter-mapping>
		<filter-name>openSessionInView</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>

	<!-- 声明struts管理请求 -->
	<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>

</web-app>

 

 

 

最后我们做一个示例:

新建实体类:

 

package gd.hz.shopping.model;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;

@Entity
public class ProductType {
	private int productId ;
	
	private String name ;

	@Id
	@GeneratedValue(strategy=GenerationType.AUTO)
	public int getProductId() {
		return productId;
	}
	public void setProductId(int productId) {
		this.productId = productId ;
	}
	
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
}

 

 

 

新建Dao接口:

 

package gd.hz.shopping.dao;

import gd.hz.shopping.model.ProductType;

public interface ProductTypeDao {
	
	public ProductType selProductType(int id);
}

 

 

实现Dao接口:

 

package gd.hz.shopping.dao.impl;

import javax.annotation.Resource;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.springframework.stereotype.Component;

import gd.hz.shopping.dao.ProductTypeDao;
import gd.hz.shopping.model.ProductType;

@Component("productTypeDao")
public class ProductTypeDaoImpl implements ProductTypeDao {
	
	private SessionFactory sessionFactory = null ;
	
	@Resource(name="sessionFactory")
	public void setSessionFactory(SessionFactory sessionFactory) {
		this.sessionFactory = sessionFactory;
	}

	@Override
	public ProductType selProductType(int id) {
		Session session = sessionFactory.getCurrentSession() ;
		ProductType productType = (ProductType)session.get(ProductType.class , id);
		return productType ;
	}
}

 

 

Manager层接口:

 

package gd.hz.shopping.service;

import gd.hz.shopping.model.ProductType;

public interface ProductTypeMnager {
	public ProductType findProductType(int id) ;
}

 

 

 

Manager层接口实现:

 

package gd.hz.shopping.service.impl;

import javax.annotation.Resource;

import org.springframework.stereotype.Component;

import gd.hz.shopping.dao.ProductTypeDao;
import gd.hz.shopping.model.ProductType;
import gd.hz.shopping.service.ProductTypeMnager;

@Component("productTypeMnager")
public class ProductTypeMnagerImpl implements ProductTypeMnager {

	private ProductTypeDao productTypeDao = null ;
	
	@Resource(name="productTypeDao")
	public void setProductTypeDao(ProductTypeDao productTypeDao) {
		this.productTypeDao = productTypeDao;
	}

	@Override
	public ProductType findProductType(int id) {
		return productTypeDao.selProductType(id) ;
	}

}

 

 

 

 

 新建控制类ProductTypeAction:

 

package gd.hz.shopping.action;

import javax.annotation.Resource;

import gd.hz.shopping.model.ProductType;
import gd.hz.shopping.service.ProductTypeMnager;

import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;

import com.opensymphony.xwork2.ActionSupport;

@Component("productTypeAction")
@Scope("prototype")
public class ProductTypeAction extends ActionSupport {
	
	private static final long serialVersionUID = 1L;
	
	private ProductTypeMnager productTypeMnager = null ;
	private ProductType productType = null ;
	
	@Resource(name="productTypeMnager")
	public void setProductTypeMnager(ProductTypeMnager productTypeMnager) {
		this.productTypeMnager = productTypeMnager;
	}
	
	public ProductType getProductType() {
		return productType;
	}
	public void setProductType(ProductType productType) {
		this.productType = productType;
	}
	
	public String test()
	{
		productType = productTypeMnager.findProductType(1) ;
		return "test" ;
	}
}

 

 

 

 

配置struts.xml文件:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd">

<struts>
	<constant name="struts.devMode" value="true" />
	<constant name="struts.i18n.encoding" value="UTF-8" />
	
	<package name="productType" namespace="/" extends="OA_default">
		<action name="productTypeAction" class="productTypeAction">
			<result name="test">/org/add_input.jsp</result>
		</action>
	</package>
</struts>
	

 

启动服务器,然后手动插入测试数据:

insert into ProductType(name) values('lfd');



 

 

新建jsp页面:

引入jstl 标签:<%@ taglib prefix="s"  uri="/struts-tags" %>

 

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib prefix="s"  uri="/struts-tags" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>ssh整合测试</title>
</head>
<body>
  <%--使用OGNL表达式--%>  
   Hello:<s:property value="productType.name"/><br> 
</body>
</html>

 

显示为:



 

 

  • 大小: 48.8 KB
  • 大小: 6.4 KB
  • 大小: 7.2 KB
  • 大小: 93.4 KB
分享到:
评论
1 楼 zf05371988 2013-10-08  
你好,你能把你的jar包发给我吗?spring官网修改之后,jar包我就不会下载了,问过同学同事,也在百度上提问过,都没有解决,我的QQ545800771,谢谢谢谢,要是方便的话,能不能把你的这个工程也给我啊?

相关推荐

    spring-3.2.0+struts-2.3.4+hibernate-4.0.1

    本人的此jar合集只能保证SSH2的基础环境,至于更复杂的功能,可能此集合已经包含,或者您可以从您下载的Spring或者hibernate或者struts中寻找您需要的jar包,按要求添加即可。 【因本人能力有限,不能保证此jar集合...

    spring-3.2.0+struts-2.3.4+hibernate-4.1.5

    本人的此jar合集只能保证SSH2的基础环境,至于更复杂的功能,可能此集合已经包含,或者您可以从您下载的Spring或者hibernate或者struts中寻找您需要的jar包,按要求添加即可。 【因本人能力有限,不能保证此jar集合...

    spring-3.2.0+struts-2.3.4+hibernate-3.6.6

    本人的此jar合集只能保证SSH2的基础环境,至于更复杂的功能,可能此集合已经包含,或者您可以从您下载的Spring或者hibernate或者struts中寻找您需要的jar包,按要求添加即可。 【因本人能力有限,不能保证此jar集合...

    spring-3.2.0+struts-1.3.10+hibernate-4.0.1

    本人的此jar合集只能保证SSH2的基础环境,至于更复杂的功能,可能此集合已经包含,或者您可以从您下载的Spring或者hibernate或者struts中寻找您需要的jar包,按要求添加即可。 【因本人能力有限,不能保证此jar集合...

    spring-3.2.0+struts-1.3.10+hibernate-4.1.5

    本人的此jar合集只能保证SSH2的基础环境,至于更复杂的功能,可能此集合已经包含,或者您可以从您下载的Spring或者hibernate或者struts中寻找您需要的jar包,按要求添加即可。 【因本人能力有限,不能保证此jar集合...

    spring-3.2.0+struts-1.3.10+hibernate-3.6.6

    本人的此jar合集只能保证SSH2的基础环境,至于更复杂的功能,可能此集合已经包含,或者您可以从您下载的Spring或者hibernate或者struts中寻找您需要的jar包,按要求添加即可。 【因本人能力有限,不能保证此jar集合...

    spring-context-3.2.0 spring-core-3.2.0 等齐全的Spring jar包

    包括`spring-core`、`spring-context`、`spring-webmvc`、`spring-web`、`spring-beans`、`spring-test`、`spring-jdbc`、`spring-orm`、`spring-aop`和`spring-tx`,它们都是3.2.0版本。让我们逐一了解这些组件的...

    spring-cglib-repack-3.2.0.jar和spring-objenesis-repack-2.1.jar

    在Java开发中,Spring框架是不可或缺的一部分,它提供了一种模块化、可扩展的方式来构建应用程序。在使用Spring框架时,有时会遇到导入源码或运行项目时出现类找不到的错误,这通常是因为缺少了必要的依赖库。在这个...

    spring-framework-3.2.0手册+jar+schema.zip

    spring.3.2.0jar包及使用手册!压缩包中有:spring-framework-3.2.0.RELEASE-schema.zip,spring-framework-3.2.0.RELEASE-docs.zip

    p4环境配置安装包(behavioral-model+gmock-1.7.0+p4c+protobuf-3.2.0+thrift-0.9.2)

    p4环境配置安装包(behavioral-model+gmock-1.7.0+p4c+protobuf-3.2.0+thrift-0.9.2),配置教程链接:https://blog.csdn.net/qq_34039018/article/details/88843937

    spring-test-3.2.0.RELEASE.jar

    总结起来,`spring-test-3.2.0.RELEASE.jar`是Spring框架中的一个重要组件,它为开发者提供了丰富的测试工具和策略,有助于构建健壮、可维护的Java应用。无论是在小型项目还是大型企业级系统中,深入理解和熟练使用...

    spring-aop-3.2.0.RELEASE.jar

    spring-aop-3.2.0.RELEASE.jar,一个Spring中AOP的jar包

    Spring3+Hibernate4+Struts2 jar包 SSH框架

    spring 3.2.0+hibernate 4.1.6+struts2整合需要的jar包 的目录 antlr-2.7.7.jar aopalliance-1.0.jar asm-3.3.jar asm-commons-3.3.jar aspectjweaver-1.5.3.jar bonecp-0.7.1.RELEASE.jar cglib-2.1.3.jar ...

    opencv3.2.0+opencv_contrib-3.2.0+vs2015编译的文件

    在本压缩包中,"opencv3.2.0+opencv_contrib-3.2.0+vs2015编译的文件" 提供了OpenCV 3.2.0版本以及opencv_contrib模块,后者包含了额外的实验性和非官方支持的模块,为开发者提供了更多的功能选择。这些文件是针对...

    spring-context-support-3.2.0.RELEASE.jar

    spring-context-support-3.2.0.RELEASE.jar

    spring-cglib-repack-3.2.0.jar

    cmd 进入源码目录 E:\Git\spring\spring-framework(我的目录) 执行: gradle cleanidea eclipse (根据自己的IDE工具选择eclipse或idea)和gradle objenesisRepackJar 以及 gradle cglibRepackJar ;

    spring3.2+ Hibernate 3.5.4-Final+struts2 整合开发jar包

    标题中的"spring3.2+ Hibernate 3.5.4-Final+struts2 整合开发jar包"指的是一个软件开发项目中采用的技术栈,它涵盖了Spring框架的3.2版本、Hibernate ORM框架的3.5.4-Final版本以及Struts2 Web应用框架的2.3.20版本...

    spring-beans-3.2.0.RELEASE-javadoc.jar

    java spring-beans-3.2.0.RELEASE-javadoc.jar spring-beans-3.2.0.RELEASE-javadoc.jar

    spring-cglib-repack-3.2.0.jar和spring-objenesis-2.2.jar

    标题 "spring-cglib-repack-3.2.0.jar" 和 "spring-objenesis-2.2.jar" 指的是两个在Spring框架源代码构建过程中常用的库。这两个库在Spring框架的运行和开发中起着至关重要的作用。 首先,让我们详细了解一下...

    spring-framework-3.2.0.RELEASE-dist

    《Spring框架3.2.0.RELEASE:深度解析与应用》 Spring框架是Java开发中的一个核心组件,尤其在企业级应用开发中占据着举足轻重的地位。本篇文章将聚焦于Spring框架的3.2.0.RELEASE版本,详细阐述其特性、核心概念...

Global site tag (gtag.js) - Google Analytics