SSH项目整合---项目环境搭建

1 创建一个web工程

2 引入jar包 

 struts2 的jar包和配置文件 web.xml和struts.xml

web.xml

struts2

org.apache.struts2.dispatcher.rg.filter.strutsPrepareAndExceptionFilter

struts2

/*

 

struts.xml


"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">



Spring jar包导入
配置文件 web.xml和applicationContext.xml
web.xml


org.springframework.web.context.ContextLoaderListener

contextConfigLocation
classpath:applicationContext.xml    

applicationContext的位置默认是在WEB-INF/下的applicationContext.xml 需要指定位置

log4j.properties

Hibernate 1 jar包导入
      *hibernate3.jar lib\required\*.jar jpa\jar
       *sl4j-log4j整合的jar包
       *数据库驱动 mysql-connector-java
       *C3p0连接池 c3p0-0.9.1.jar
配置文件:使用没有hibernate的核心配置文件的方式进行整合
映射文件

配置基本信息:
C3P0连接池: 引入外部属性文件:jdbc.properties
      配置C3p0连接池
事务管理
Hibernate相关信息
jdbc.driver = com.mysql.jdbc.Driver
jdbc.url = jdbc:mysql:///shop
jdbc.user = root
jdbc.password =*******
 
在Sprig中配置事务管理 相关信息 C3p0


















org.hibernate.dialect.MySQLDialect
true
true
false
update

  
 
 










 

你可能感兴趣的:(SSH项目整合---项目环境搭建)