SSH refers to the classic framework of javaweb. It cannot be said that 100% of people need to know the SSH framework, but most companies are using it. When it comes to frameworks, they will mention ssh. This time I will use a very simple one. Register an example to integrate the SSH framework. When integrating frameworks, you should pay attention to testing each framework separately before integrating, otherwise it will be difficult to troubleshoot problems after integration.
Environment: windows + MyEclipse + JDK1.7 + Tomcat7 + MySQL
The code has been tested. If there is an error, it may be because I did not describe it clearly in some places. Please leave a message.
1. Integration principle
2. Guide package (41)
1.hibernate
(1)hibernate/lib/required
(3) Database driver
2.struts2
(1) struts-blank.war/WEB-INF /lib/*
(2) Struts integrates the spring plug-in package
Note: Once this package is imported, struts2 will look for the spring container when it starts. If it cannot find it, an exception will be thrown
3.spring
(1)Basic:4+2
<?xml version="1.0" encoding="UTF-8"?><beans><bean></bean></beans>
2. Configure spring to start with the project (web.xml )
<!-- 让spring随web启动而创建的监听器 --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!-- 配置spring配置文件位置参数 --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </context-param>4. Configure struts2 separately 1. Configure struts2 main configuration file (struts.xml)
<?xml version="1.0" encoding="UTF-8"?> nbsp;struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd"><struts><package><action><result>/success.jsp</result></action></package></struts>2. Configure struts2 core filter to web.xml
<!-- 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>5. Integration of struts2 and spring 1. Guide package (already imported) struts2-spring-plugin-2.3.24.jar 2. Configuration constants View the default configuration file starting from line 31 and find the configuration you want to configure Variables.
### if specified, the default object factory can be overridden here ### Note: short-hand notation is supported in some cases, such as "spring" ### Alternatively, you can provide a com.opensymphony.xwork2.ObjectFactory subclass name here # struts.objectFactory = spring ### specifies the autoWiring logic when using the SpringObjectFactory. ### valid values are: name, type, auto, and constructor (name is the default) struts.objectFactory.spring.autoWire = name
Add constants to struts.xml
<!-- # struts.objectFactory = spring 将action的创建交给spring容器 struts.objectFactory.spring.autoWire = name spring负责装配Action依赖属性--><constant></constant>3. Integration solution 1: create struts2 yourself Action, spring is responsible for assembling dependency attributes (understand)
<!-- 整合方案1:class属性上仍然配置action的完整类名 struts2仍然创建action,由spring负责组装Action中的依赖属性 --><action><result>/index.htm</result><result>/login.jsp</result></action>Reason for not recommending: It is best for spring to completely manage the life cycle of action. The functions in spring are only applied to Action.
<!-- action --><!-- 注意:Action对象作用范围一定是多例的.这样才符合struts2架构 --><bean><property></property></bean>
struts.xml:
<!--
整合方案2:class属性上填写spring中action对象的BeanName
完全由spring管理action生命周期,包括Action的创建
注意:需要手动组装依赖属性 --><action><result>/index.htm</result><result>/login.jsp</result></action>
1. Import entity classes & orm metadata
Example: User.javapackage cn.xyp.web.domain;import java.util.HashSet;import java.util.Set;public class User {private Long user_id;private String user_code;private String user_name;private String user_password;private Character user_state;public Long getUser_id() {return user_id; }public void setUser_id(Long user_id) {this.user_id = user_id; }public String getUser_code() {return user_code; }public void setUser_code(String user_code) {this.user_code = user_code; }public String getUser_name() {return user_name; }public void setUser_name(String user_name) {this.user_name = user_name; }public String getUser_password() {return user_password; }public void setUser_password(String user_password) {this.user_password = user_password; }public Character getUser_state() {return user_state; }public void setUser_state(Character user_state) {this.user_state = user_state; } @Overridepublic String toString() {return "User [user_id=" + user_id + ", user_code=" + user_code + ", user_name=" + user_name + ", user_password=" + user_password + "]"; } }
User.hbm.xml:
<?xml version="1.0" encoding="UTF-8"?>nbsp;hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"><hibernate-mapping><class><id><generator></generator></id><property></property><property></property><property></property><property></property></class></hibernate-mapping>
<?xml version="1.0" encoding="UTF-8"?>nbsp;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>com.mysql.jdbc.Driver</property> <!-- 数据库url --><property>jdbc:mysql:///crm_32</property> <!-- 数据库连接用户名 --><property>root</property> <!-- 数据库连接密码 --><property>1234</property><!-- 数据库方言 注意: MYSQL在选择方言时,请选择最短的方言. --><property>org.hibernate.dialect.MySQLDialect</property> <!-- 将hibernate生成的sql语句打印到控制台 --><property>true</property><!-- 将hibernate生成的sql语句格式化(语法缩进) --><property>true</property><!-- 自动导出表结构. 自动建表 --><property>update</property> <!-- 引入实体配置文件 --><mapping></mapping><mapping></mapping><mapping></mapping></session-factory></hibernate-configuration>
七、spring整合hibernate
1.整合原理
将sessionFactory对象交给spring容器管理
2.在spring中配置sessionFactory
(1)配置方案一:(了解)
<!-- 加载配置方案1:仍然使用外部的hibernate.cfg.xml配置信息 --><bean><property></property></bean>
(2)配置方案二:(推荐)
<!-- 加载配置方案2:在spring配置中放置hibernate配置信息 --><bean><!-- 将连接池注入到sessionFactory, hibernate会通过连接池获得连接 --><property></property><!-- 配置hibernate基本信息 --><property><props><!-- 必选配置 --><prop>com.mysql.jdbc.Driver</prop><prop>jdbc:mysql:///crm_32</prop><prop>root</prop><prop>1234</prop> <prop>org.hibernate.dialect.MySQLDialect</prop><!-- 可选配置 --><prop>true</prop><prop>true</prop><prop>update</prop></props></property><!-- 引入orm元数据,指定orm元数据所在的包路径,spring会自动读取包中的所有配置 --><property></property></bean>
八、spring整合c3p0连接池
1.配置db.properties
jdbc.jdbcUrl=jdbc:mysql:///xyp_crm jdbc.driverClass=com.mysql.jdbc.Driver jdbc.user=root jdbc.password=123456
2.引入连接池到spring中
<!-- 读取db.properties文件 --><property-placeholder></property-placeholder><!-- 配置c3p0连接池 --><bean><property></property><property></property><property></property><property></property></bean>
3.将连接池注入给SessionFactory
<bean><!-- 将连接池注入到sessionFactory, hibernate会通过连接池获得连接 --><property></property></bean>
九、spring整合hibernate环境操作数据库
1.Dao类创建:继承HibernateDaoSupport
注意:项目中要确保使用统一版本。
//HibernateDaoSupport 为dao注入sessionFactorypublic class UserDaoImpl extends HibernateDaoSupport implements UserDao {
2.hibernate模板的操作
(1)execute
@Overridepublic User getByUserCode(final String usercode) {//HQLreturn getHibernateTemplate().execute(new HibernateCallback<user>() { @Overridepublic User doInHibernate(Session session) throws HibernateException { String hql = "from User where user_code = ? "; Query query = session.createQuery(hql); query.setParameter(0, usercode); User user = (User) query.uniqueResult();return user; } });</user>
(2)findByCriteria
//CriteriaDetachedCriteria dc = DetachedCriteria.forClass(User.class); dc.add(Restrictions.eq("user_code", usercode)); List<user> list = (List<user>) getHibernateTemplate().findByCriteria(dc); if(list != null && list.size()>0){return list.get(0); }else{return null; }</user></user>
3.spring中配置dao
<!-- Dao --><bean><!-- 注入sessionFactory --><property></property></bean>
十、spring的aop事务
1.准备工作
<!-- 核心事务管理器 --><bean><property></property></bean>
2.xml配置aop事务
(1)配置通知
<!-- 配置通知 --><advice> <attributes><method></method> <method></method> <method></method> <method></method> <method></method> <method></method> <method></method> <method></method> </attributes> </advice>
(2)配置织入
<!-- 配置将通知织入目标对象 配置切点 配置切面 --><config> <pointcut></pointcut> <advisor></advisor> </config>
3.注解配置aop事务
(1)开启注解事务
<!-- 开启注解事务 --><annotation-driven></annotation-driven>
(2)Service类中使用注解
@Transactional(isolation=Isolation.REPEATABLE_READ,propagation=Propagation.REQUIRED,readOnly=true)public class UserServiceImpl implements UserService{
@Override @Transactional(isolation=Isolation.REPEATABLE_READ,propagation=Propagation.REQUIRED,readOnly=false)public void saveUser(User u) { ud.save(u); }
十一、扩大session作用范围
1.配置filter
为了避免使用懒加载时出现no-session问题.需要扩大session的作用范围。
<!-- 扩大session作用范围 注意: 任何filter一定要在struts的filter之前调用 因为struts是不会放行的 --> <filter> <filter-name>openSessionInView</filter-name> <filter-class>org.springframework.orm.hibernate5.support.OpenSessionInViewFilter</filter-class> </filter> <filter-mapping> <filter-name>openSessionInView</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
十二、练习:用户登录
1.struts.xml核心配置
<struts><!-- # struts.objectFactory = spring 将action的创建交给spring容器 struts.objectFactory.spring.autoWire = name spring负责装配Action依赖属性--><constant></constant><package><global-exception-mappings><exception-mapping></exception-mapping></global-exception-mappings> <!-- 整合方案:class属性上填写spring中action对象的BeanName 完全由spring管理action生命周期,包括Action的创建 注意:需要手动组装依赖属性 --><action><result>/index.htm</result><result>/login.jsp</result></action></package></struts>
2.Action代码
public class UserAction extends ActionSupport implements ModelDriven<user> {private User user = new User(); private UserService userService ; public void setUserService(UserService userService) {this.userService = userService; } public String login() throws Exception { // 1 调用Service执行登陆逻辑User u = userService.getUserByCodePassword(user); // 2 将返回的User对象放入session域ActionContext.getContext().getSession().put("user", u);// 3 重定向到项目首页return "toHome"; } @Overridepublic User getModel() {return user; } }</user>
2.Service核心代码
public User getUserByCodePassword(User u) { // 1 根据登陆名称查询登陆用户User existU = ud.getByUserCode(u.getUser_code());// 2 判断用户是否存在.不存在=>抛出异常,提示用户名不存在if (existU == null) {throw new RuntimeException("用户名不存在!"); } // 3 判断用户密码是否正确=>不正确=>抛出异常,提示密码错误if (!existU.getUser_password().equals(u.getUser_password())) {throw new RuntimeException("密码错误!"); } // 4 返回查询到的用户对象return existU; }
3.Dao核心代码
public User getByUserCode(final String usercode) { //CriteriaDetachedCriteria dc = DetachedCriteria.forClass(User.class); dc.add(Restrictions.eq("user_code", usercode)); List<user> list = (List<user>) getHibernateTemplate().findByCriteria(dc); if(list != null && list.size()>0){return list.get(0); }else{return null; } }</user></user>
The above is the detailed content of Detailed explanation of the integration of the three major frameworks in SSH. For more information, please follow other related articles on the PHP Chinese website!

随着互联网的发展,大数据分析和实时信息处理成为了企业的一个重要需求。为了满足这样的需求,传统的关系型数据库已经不再满足业务和技术发展的需要。相反,使用NoSQL数据库已经成为了一个重要的选择。在这篇文章中,我们将讨论SpringBoot与NoSQL数据库的整合使用,以实现现代应用程序的开发和部署。什么是NoSQL数据库?NoSQL是notonlySQL

使用Docker容器部署JavaEE应用程序:创建Dockerfile定义镜像、构建镜像、运行容器并映射端口,然后在浏览器中访问应用程序。示例JavaEE应用程序:RESTAPI与数据库交互,通过Docker部署后可在localhost访问。

UniApp实现Vue.js框架的完美整合引言:UniApp是一种基于Vue.js框架的跨平台开发工具,它能够将一个Vue.js项目编译成多个不同平台的应用程序,如iOS、Android、小程序等。UniApp的优势在于能够让开发者只编写一套代码,就能够同时适配多个平台,加快开发效率并降低开发成本。下面将介绍如何使用UniApp实现Vue.js框架的完美整合

java和javaee在定义和用途、组件和功能、平台和环境、应用范围和开发模式等。详细介绍:1、定义和用途,Java是一种面向对象的编程语言,由Sun Microsystems于1995年推出,Java具有跨平台、可移植性、安全性和简单性等特点,广泛用于开发各种应用程序,而Java EE是Java平台的企业级扩展,旨在开发和部署大规模、可扩展、可靠的企业级应用程序等等。

Vue3相较于Vue2的变化:更强大的网络请求库整合随着Vue.js的持续发展和更新,Vue3作为Vue.js的下一个版本,带来了一些令人兴奋的变化和改进。其中一个最显著的变化就是更强大的网络请求库整合。在Vue2中,我们通常使用如axios等第三方库来进行网络请求,而在Vue3中,Vue开发团队已经提供了一个内置的网络请求库,它为我们提供了更直观和灵活的方

PHPcms与其他系统整合的实用技巧随着互联网技术的不断发展,网站开发领域也变得愈加多样化和复杂化。在实际的项目中,我们常常会面对不同系统之间需要进行整合的情况,这就需要我们具备一定的技巧和经验来解决这些问题。本文将针对PHPcms系统与其他系统整合的情况,介绍一些实用的技巧和具体的代码示例,帮助开发者更好地应对挑战。一、整合基本原理在进行系统整合时,首先需

随着互联网的迅猛发展,Web应用程序的需求也不断增加,而软件测试作为保障企业应用程序质量的重要部分,也随之变得越来越重要。然而,传统的手工测试方法既费时又费力,而且容易出错。自动化测试是解决这个问题的一种方法,其中Web应用程序的自动化测试已经成为一种常见的测试方式,其中,使用WebDriver进行Web应用程序自动化测试是一种非常受欢迎的方式。本文

使用JavaEE容器化应用程序时,可能会遇到兼容性问题,例如会话状态管理、依赖关系注入、资源池和安全。解决这些问题的方案包括使用外部会话存储、配置JNDI、管理资源池和配置安全,确保JavaEE应用程序与容器技术无缝集成,获得容器化的优势。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Atom editor mac version download
The most popular open source editor

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
