SSH开发环境整合搭建

1、新建工程,把工程编码改为utf-8

2.把JSP的编码格式改为utf-8

3.把所需jar包放入到lib下

4、建立三个src folder

Src:存放源代码

Config:存放配置文件

Test:存放测试文件

5、在src下建立package包

domain

dao

daoImpl

service

serviceImpl

view

util

在WebRoot文件夹下建立几个新的文件夹

script :存放javascript文件

style:存放style文件

-----img:存放图片资源

6.在WEB-INF文件夹下建立JSP文件夹,目录如下:

Jsp:存放jsp文件

7.在WebRoot—>WEB-INFàlib文件夹下放置所需的jar包

8、整合spring和hibernate

8.1 添加配置文件

在config目录中添加spring配置文件application.xml

Hibernate配置文件hibernate.cfg.xml和jdbc.properties

在domain包中新建POJO类Users和其对应的映射文件Users.hbm.xml

8.2 具体文件代码

具体文件的代码如下:

Users类代码为:

package com.oa.domain;

public class Users
{
	private long uid;

	public long getUid()
	{
		return uid;
	}

	public void setUid(long uid)
	{
		this.uid = uid;
	}

}

Users.hbm.xml文件代码为:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

<hibernate-mapping>
 <!-- 用来描述一个持久化类
      name 类的全名
      table 表名,可以不写,默认值和类名一样
      catalog 数据库名称,一般不写
 -->
 <class name="com.oa.domain.Users" table="Users" lazy="true">
 	<!-- 标示属性,和数据库主键对应 ,将Users类的pid映射为表中的主键pid
 	     column 列名称
 	     length 数据库的字段长度,默认数据库最高的长度
 	     type 类型
 	-->
 	<id name="uid" column="uid" length="5" type="java.lang.Long">
 		<!-- 主键产生器
 			 告诉hibernate容器用什么样的方式产生主键
 			 用数据库本身的自动增长,不用hibernate的
 		 -->
 		<generator class="native"></generator>
 	</id>

 </class>
</hibernate-mapping>

Jdbc.properties中代码为:

driverClass=com.mysql.jdbc.Driver
jdbcUrl=jdbc\:mysql\://localhost\:3306/oa
username=root
password=340621

hibernate配置文件hibernate.cfg.xml代码为:

<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
	<!--
		一个session-factory只能连接一个数据库
	-->
<session-factory>

	<!--
		设置数据库方言
	-->
	<property name="dialect">
		org.hibernate.dialect.MySQLDialect
	</property>

	<!--
		作用:根据持久化类和映射文件生成表
		validate 只验证不生成
		create-drop 当hibernate启动时生成表,hibernate结束时删除表
		create 只要启动hibernate时生成表
		update 在启动hibernate容器时检查持久化类和映射文件是不是对应,不对应则创建
	-->
	<property name="hbm2ddl.auto">update</property>
	<!--
		显示hibernate内部生成的sql语句
	-->
	<property name="show_sql">true</property>
	<property name="connection.pool_size">1</property>

	<!-- 声明映射文件 -->
	<mapping resource="com/oa/domain/Users.hbm.xml" />
	<mapping resource="com/oa/domain/Role.hbm.xml" />

</session-factory>
</hibernate-configuration>

Spring配置文件代码为:

<?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:aop="http://www.springframework.org/schema/aop"
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:context="http://www.springframework.org/schema/context"     

	xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
           http://www.springframework.org/schema/aop
           http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
           http://www.springframework.org/schema/tx
           http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
           http://www.springframework.org/schema/context
      	   http://www.springframework.org/schema/context/spring-context-3.0.xsd
           ">

<!-- 0,配置bean的自动扫描与装配 -->
	<context:component-scan base-package="com.oa"></context:component-scan>

	<!-- 1,配置数据源 -->
	<!-- 1.1,导入 jdbc.properties 配置文件 -->
	<context:property-placeholder location="classpath:jdbc.properties" />
	<!-- 1.2,配置数据源(c3p0) -->
	<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
		<!-- 数据库连接信息 -->
		<property name="jdbcUrl" value="${jdbcUrl}"></property>
		<property name="user" value="${username}"></property>
		<property name="password" value="${password}"></property>
		<property name="driverClass" value="${driverClass}"></property>

		<!-- 其他配置 -->
		<!--初始化时获取三个连接,取值应在minPoolSize与maxPoolSize之间。Default: 3 -->
		<property name="initialPoolSize" value="3"></property>
		<!--连接池中保留的最小连接数。Default: 3 -->
		<property name="minPoolSize" value="3"></property>
		<!--连接池中保留的最大连接数。Default: 15 -->
		<property name="maxPoolSize" value="5"></property>
		<!--当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 3 -->
		<property name="acquireIncrement" value="3"></property>
		<!-- 控制数据源内加载的PreparedStatements数量。如果maxStatements与maxStatementsPerConnection均为0,则缓存被关闭。Default: 0 -->
		<property name="maxStatements" value="8"></property>
		<!--maxStatementsPerConnection定义了连接池内单个连接所拥有的最大缓存statements数。Default: 0 -->
		<property name="maxStatementsPerConnection" value="5"></property>
		<!--最大空闲时间,1800秒内未使用则连接被丢弃。若为0则永不丢弃。Default: 0 -->
		<property name="maxIdleTime" value="1800"></property>
	</bean>

	<!-- 2,配置SessionFactory(整合Hibernate) -->
	<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
		<property name="dataSource" ref="dataSource"></property>
		<property name="configLocation" value="classpath:hibernate.cfg.xml"></property>
	</bean>

	<!-- 3,配置声明式事务 -->
	<!-- 3.1,配置事务管理器 -->
	<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
		<property name="sessionFactory" ref="sessionFactory"></property>
	</bean>
	<!-- 3.2,配置基于注解的事务支持-->
	<tx:annotation-driven transaction-manager="transactionManager"/>
</beans>

8.3编写测试文件:

一般测试spring和hibernate是否整合是通过sessionFactory来进行,具体方法为:

在test文件夹中新建SessionFactoryTest类,具体代码为:

package com.oa.test;

import org.hibernate.SessionFactory;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
importorg.springframework.context.support.ClassPathXmlApplicationContext;

public class SessionFactoryTest
{
         privateApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
         @Test
         publicvoid testSession()
         {

                   SessionFactorysf = (SessionFactory) context.getBean("sessionFactory");

                   //System.out.println(sf.);
         }
}

执行测试文件,没有出错,说明spring和hibernate成功整合

9、整合spring和Struts2

9.1添加配置文件

在config目录中添加Struts2配置文件struts.xml

在view包中新建UserAction

9.2添加代码

UserAction类代码如下:

package com.oa.view;

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

import com.opensymphony.xwork2.ActionSupport;

//基于注解的配置
@Controller
@Scope("prototype")
// Scope为prototype,保证action的多实例
public class RoleAction extends ActionSupport
{
	public String list()
	{

		return "list";
	}

	public String delete()
	{

		return "toList";
	}

	public String addUI()
	{

		return "addUI";
	}
	public String add()
	{

		return "toList";
	}

	public String editUI()
	{

		return "editUI";
	}

	public String edit()
	{

		return "toList";
	}
}

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" />
    <!-- 把action扩展名改为.do -->
	<constant name="struts.action.extension" value="do"/>
	<!-- 把主题设为simple -->
	<constant name="struts.ui.theme" value="simple" />
    <package name="default" namespace="/" extends="struts-default">
		<action name="test" class="com.oa.test.ActionTest" method="execute">
			<result name="success" type="dispatcher">/test.jsp</result>
		</action>   

		<!-- 配置roleAction -->
		<action name="role_*" class="roleAction" method="{1}">
			<result name="list">/WEB-INF/jsp/roleAction/list.jsp</result>
			<result name="addUI">/WEB-INF/jsp/roleAction/addUI.jsp</result>
			<result name="editUI">/WEB-INF/jsp/roleAction/editUI.jsp</result>
			<result name="toList" >/WEB-INF/jsp/roleAction/list.jsp</result>
		</action>
    </package>  

    <!-- Add packages here -->

</struts>

9.3 编写测试文件

 

10.配置web.xml

  加入spring的监听器

<!-- 配置Spring的用于初始化ApplicationContext对象的监听器 -->
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath:applicationContext.xml</param-value>
	</context-param>

 加入struts2的过滤器

<!-- 配置Struts2核心过滤器 -->

 <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>

11.请求

时间: 2024-09-30 18:39:57

SSH开发环境整合搭建的相关文章

Ruby on Rails开发环境的搭建

本文将着重介绍如何在不同的操作系统下搭建RoR开发环境,同时,在最后会详细介绍如何在Windows操作系统下安装并配置MySQL数据库. Windows系统下开发环境的搭建 本文中将介绍如何在Windows操作系统下搭建RoR开发环境. 1.远程安装 a.步骤1:下载并安装Ruby一键安装包 下载最新的Ruby 1.8.4-16一键安装包,其下载地址为http://rubyforge.org/ projects/rubyinstaller/. 下载后运行该安装文件,显示界面如图2-1所示. 图1

百度地图最新版本的开发环境如何搭建?

问题描述 百度地图最新版本的开发环境如何搭建? 网上大多都是2.0版本的环境搭建,百度地图SDK更新,最新版本环境搭建一直搞不定!jar包so文件都不一样! 就是对着官网的来做的!http://lbc.baidu.com/static/cms/images/android_dev1.png百度地图的版本11.7号刚刚更新! 我下载的是最新的SDK跟官网上开发指南里面介绍要导入的jar包都不一样!找不到那些导包.是不是更新版本后开发指南等没更新!还是我什么地方没注意到 解决方案 參考Hello B

swift语言实战晋级-1 Swift开发环境的搭建

原文:swift语言实战晋级-1 Swift开发环境的搭建     想要进行Swift的学习,必须要有个开发环境.简单的说就是装好了Xcode的Mac系统.那么接下来我们就简单了解一下这方面的内容.   1.1 下载Xcode        Xcode是苹果公司出的编程工具,类似于微软出品的visual studio,编写Java的eclipse,开发Flash的Flash IDE.所谓工欲善其事必先利其器,所以我们首先要知道的事情就是该去哪里下载Xcode,有以下几个途径.        途径

《Android 应用案例开发大全(第3版)》——第1.3节Android开发环境的搭建

1.3 Android开发环境的搭建 本节主要讲解基于Eclipse的Android开发环境的搭建(包括SDK的下载和SDK的配置).模拟器的创建和运行,以及Android开发环境搭建好之后,对其开发环境进行测试并创建第一个Android应用程序Hello Android等相关知识. 1.3.1 Android SDK的下载 前面已经对Android平台进行了简单的介绍,从本小节开始,将带领读者逐步搭建自己的开发环境.Android SDK是开发Android应用程序的基础开发环境,其本身是免费

敏捷开发的JAVA开发环境如何搭建才最好?

问题描述 敏捷开发的JAVA开发环境如何搭建才最好? 请问,如果我有一个团队需要完成一个比较有规模的JAVA网站开发项目,如何搭建AGILE原则的开发环境比较好呢?请说地详细一点.谢谢! 解决方案 开发环境和敏捷不敏捷关系不大.不过如果能用github搞一个私有库,做做持续集成,应该会有些帮助.起码在形式上. 解决方案二: 后台开发怎么搭建环境?用eclipse在本地环境搭建开发环境,通过tomcat插件或者jetty启动调试class.jsp.之前看过很多公司都通过打成war包发布到集成环境再

《stm32嵌入式系统开发实战指南》一3.1 开发环境及搭建

3.1 开发环境及搭建 3.1.1 常见开发环境 1.ADS1.2 ADS是ARM公司的集成开发环境软件,拥有非常强大的功能.ADS的前身是SDT,SDT是ARM公司几年前的开发环境软件,目前SDT早已经不再升级.ADS包括四个模块,分别是:SIMULATOR.C编译器.实时调试器和应用函数库. ADS的编译器与调试器较SDT都有了非常大的改观,ADS1.2提供完整的Windows界面开发环境.ADS1.2的C编译器效率极高,支持C以及C++,使工程师可以很方便地使用C语言进行开发.ADS1.2

Android源码下载及开发环境的搭建

1.前言         前一博文给自己列了一下Android的学习计划,是时候一个个的完成了.如计划列的,我要写的第一篇是<Android源码 的下载及开发环境的搭建>,致于如何去下载源码,其实网上已经一大堆的帖子了,一搜就有.但在这里,我想说,一个源码的下载,不是简单的把源码下载下来之 样就OK了,就可以开始你的源码学习之旅.要想更好的学习源码和进行开发,一个适合自己的开发环境还是必不可少的,这里我会列出来我给自己准备的开发环境 的做法,不能说明是最优的,但至少我感觉对我来说还是挺方便的.

《Android 平板电脑开发实战详解和典型案例》——1.2节开发环境的搭建

1.2 开发环境的搭建 Android 平板电脑开发实战详解和典型案例 本节开始进入Android的开发,首先介绍开发环境的搭建.开发环境的搭建分为3个步骤:SDK的安装与环境变量配置.Eclipse集成开发环境的搭建.模拟器的创建与使用,下面对其一一进行讲解. 1.2.1 Android SDK的安装与环境变量配置 Android SDK的安装与环境变量配置包括如下几个步骤. (1) 在Oracle的官方网站上,下载相应的JDK软件(网址为:http://www.oracle.com/tech

《python 与数据挖掘 》一1.3 Python开发环境的搭建

本节书摘来自华章出版社<python 与数据挖掘 >一书中的第1章,第1.3节,作者张良均 杨海宏 何子健 杨 征,更多章节内容可以访问"华章计算机"公众号查看. 1.3 Python开发环境的搭建 所谓编程语言,意指"与计算机交流时使用的语言".它是一种被标准化的交流技 巧,用于连接程序员的思维和计算机的操作.学习编程语言的第一关,就是安装和环境配置.我们必须与计算机约定如何理解代码.指令和语法,才能够顺利地与计算机交流,赋予它复杂的功能.Python