ssh整合(一)

一.导入ssh所需要的jar包



二.整合struts2

  1.创建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_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>spring_ssh</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  
  <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>
  
  <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>

  2.创建struts.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
        "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
        "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
	<constant name="struts.devMode" value="false"></constant>
    <package name="mystruts21" extends="struts-default">
    <!-- 定义处理请求URL为login.action的Action -->
    	<!-- 创建struts2的对象有spring进行管理 
    		此时class配置的不是真实的类名,而是springbean的名称,称为伪类名
    	-->
        <action name="userAction" class="userAction">
	       <result name="array">/index2.jsp</result>
        </action>
    </package>
</struts>
jsp文件:

index.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags"  prefix="s"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    
    <title>My JSP 'index.jsp' starting page</title>
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->
  </head>
  
  <body>
    <h1>添加用户</h1>
    <s:form action="userAction" method="post" namespace="/">
    	<p>用户名:<s:textfield name="user.username"></s:textfield></p>
    	<p>密码:<s:textfield name="user.password"></s:textfield></p>
    	<s:submit type="submit" value="提交"></s:submit>
    </s:form>
  </body>
</html>

index2.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'index2.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  
  <body>
    This is my JSP index2. <br>
  </body>
</html>

3.创建实体类,数据层,业务层,表现层

实体类:

public class User {
	private String username;
	private String password;
	private Integer id;
	public Integer getId() {
		return id;
	}
	public void setId(Integer id) {
		this.id = id;
	}
	public String getUsername() {
		return username;
	}
	public void setUsername(String username) {
		this.username = username;
	}
	public String getPassword() {
		return password;
	}
	public void setPassword(String password) {
		this.password = password;
	}
	@Override
	public String toString() {
		return "User [username=" + username + ", password=" + password + "]";
	}
	
}

数据层

public class UserDao extends HibernateDaoSupport{
	public void save(User user) {
		System.out.println("userDao save....");
		this.getHibernateTemplate().save(user);
	}
}
业务层
@Transactional
public class UserService {
	private UserDao userDao;

	public void setUserDao(UserDao userDao) {
		this.userDao = userDao;
	}
	
	public void save(User user) {
		System.out.println("userService save..."+user);
		userDao.save(user);
	}
}

表现层

public class UserAction extends ActionSupport{
	public User user = new User();
	private UserService userService;
	
	public void setUser(User user) {
		this.user = user;
	}

	public void setUserService(UserService userService) {
		this.userService = userService;
	}

	public String execute() throws Exception {
		System.out.println("user Action running..."+user.getUsername()+"--"+user.getPassword());
		//1.直接使用applicationContext对象完成对bean的获取
		/**
		 * 优点:掌握简单
		 * 缺点:每次使用bean都要加载配置文件,io读取配置速度地下
		 * 解决方案:减少spring配置文件的加载次数,每次使用加载的配置信息都是相同的,可以只加载一次,服务器启动时加载
		 * 制作一个监听器,服务器启动时加载,对象放在公共的共享区域servletContext
		 */
		ApplicationContext act = new ClassPathXmlApplicationContext("applicationContext-h1.xml");
		UserService userService = (UserService) act.getBean("userService");
		userService.save(user);
		
		//2.服务器启动时将applicationContext加载到ServletContext范围内
		/**
		 * 优点:applicationContext使用只加载一次,提高了速度
		 * 缺点:加载方式过于繁琐
		 */
		/*ServletContext scContext =ServletActionContext.getServletContext();
		WebApplicationContext act =WebApplicationContextUtils.getWebApplicationContext(scContext);
		UserService userService = (UserService) act.getBean("userService");
		userService.save(user);*/
		
		//3.private UserService userService直接注入servie
		
		/*
		 *使用struts2.spring.plugin.jar提供的 struts获取spring对象的自动按名称装配模式
		 *优点:格式简洁
		 *缺点:当前模式struts的对象是由struts自己控制产生的
		 *解决方法:将struts创建对象的功能交给spring管理
		 *
		userService.save(user);*/
		//4.spring管理创建对象
		/**
		 * 优点:所有对象交由spring进行管理
		 * 缺点:无
		 */
		//userService.save(user);
		return "array";
	}
}

三.Spring文件配置+hibernate整合

hibernate引入式整合

1.applicationContext.xml文件

<?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:p="http://www.springframework.org/schema/p"
       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.xsd
		http://www.springframework.org/schema/context 
		http://www.springframework.org/schema/context/spring-context.xsd
		http://www.springframework.org/schema/aop 
		http://www.springframework.org/schema/aop/spring-aop.xsd
		http://www.springframework.org/schema/tx
		http://www.springframework.org/schema/tx/spring-tx.xsd
		">
	<tx:annotation-driven transaction-manager="txManager"/>	
	
	<bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
		<property name="sessionFactory" ref="sessionFactory"/>	
	</bean>
		
	<bean id="userAction" class="com.array.ssh.action.UserAction" scope="prototype">
		<property name="userService" ref="userService"/>
	</bean>	
	<bean id="userService" class="com.array.ssh.service.UserService" scope="prototype">
		<property name="userDao" ref="userDao"/>
	</bean>
	<bean id="userDao" class="com.array.ssh.dao.UserDao" scope="prototype">
		<property name="sessionFactory" ref="sessionFactory"></property>
	</bean>
	
	<!-- sessionFactory -->
	<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
		<!-- 引入式整合:直接加载原始hibenrate配置文件 -->
		<property name="configLocation" value="classpath:hibernate.cfg.xml"/>
	</bean>
	
</beans>
hibernate.cfg.xml文件配置
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
    <session-factory>
        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="connection.url">jdbc:mysql://localhost:3306/spring</property>
        <property name="connection.username">array</property>
        <property name="connection.password">array</property>
        
        <property name="dialect">org.hibernate.dialect.MySQLDialect</property>
        <property name="show_sql">true</property>
        <property name="format_sql">false</property>
        
        <mapping resource="com/array/ssh/bean/User.hbm.xml"/>
        
    </session-factory>
</hibernate-configuration>
User.hbm.xml文件配置
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping default-lazy="true">
    <class name="com.array.ssh.bean.User" table="test1" >
        <id name="id">
            <generator class="native"/>
        </id>
        <property name="username"/>
        <property name="password"/>
    </class>
</hibernate-mapping>






  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值