SSH(Spring+Struts2+Hibernate)框架搭建步骤(含配置文件以及运行结果)

1.创建web项目

2.导入ssh 所需要的多有jar包,到web-inf下面的lib里面

3.将导入过来的jar包都build--path一下

4.切换到myeclipse database视图中,添加链接数据库的链接

5.新建一个数据库连接(如果忘记了数据库链接时你可以去下面的网址中查看):

常用数据库连接串与驱动总结

6.切换视图,在src下面新建一个名为org.entity的包:

7.添加hibernate,右击项目名,选择myeclipseadd HIbernaete ……

在自动创建的hibernate.cfg.xml文件中,新加两行代码,实现打印输出sql语句和格式化sql语句的功能。

<property name="show_sql">trueproperty>
<property name="format_sql">trueproperty>

8.右击项目,添加struts

9.添加spring的内容:

10.web.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">
<listener><listener-class>org.springframework.web.context.ContextLoaderListenerlistener-class>
</listener><context-param><param-name>contextConfigLocationparam-name><param-value>classpath:applicationContext.xml</param-value>
</context-param>
<filter><filter-name>openSessionInViewFilterfilter-name><filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilterfilter-class>
<init-param><param-name>flushModeparam-name><param-value>AUTOparam-value></init-param></filter>
<filter-mapping><filter-name>openSessionInViewFilterfilter-name><url-pattern>/*url-pattern>
</filter-mapping>
<filter><filter-name>struts2filter-name><filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping><filter-name>struts2filter-name><url-pattern>/*url-pattern>
</filter-mapping><error-page>
<error-code>404error-code>
<location>/errorPage.jsplocation>
</error-page>
<welcome-file-list>
<welcome-file>index.jspwelcome-file>
</welcome-file-list>
</web-app>

如果嫌复制麻烦,可以直接下载源文件(由于附件不支持.xml格式,所以下载完之后需要将后缀名改成.xml即可):

点击可下载web.xml文件

11.配置spring的内容,打开applicationContext.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: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.1.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
"><bean id="sessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="configLocation"
value="classpath:hibernate.cfg.xml">
</property>
</bean><bean id="txManage" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
<tx:advice id="txAdvice" transaction-manager="txManage">
<tx:attributes><tx:method name="add*" propagation="REQUIRED"/><tx:method name="save*" propagation="REQUIRED"/><tx:method name="update*" propagation="REQUIRED"/><tx:method name="del*" propagation="REQUIRED"/><tx:method name="get*" read-only="true"/><tx:method name="find*" read-only="true"/>
</tx:attributes>
</tx:advice><aop:config>
<aop:pointcut expression="execution(* org.service..*.*(..))" id="mycut"/>
<aop:advisor advice-ref="txAdvice" pointcut-ref="mycut"/>
</aop:config>
</beans>

如果嫌复制麻烦,可以直接下载源文件(由于附件不支持.xml格式,所以下载完之后需要将后缀名改成.xml即可):

点击下载applicationContext.xml文件

12.切换到myeclipse database视图:(反向生成实体类)

13.右击表:

点击finish完成即可。

14.切换视图至myeclipsep perspective

15.将项目发布到tomcat中。

16.启动tomcat服务,检查控制台是否有错误(一般只要控制台中没有超链接错误,正常显示毫秒数即可)。

17.如果没有错误,将服务关掉。

18.开始根据实体类写接口,一般一个实体类对应一个Dao接口

19.在IStudentDao接口中写增删改查的抽象方法。

20.开始写Dao层的实现类,新建一个StudentDaoImpl的实现类。需要继承HibernateDaoSupport类,实现IStudentDao接口。

实现类中的代码:

publicclassStudentDaoImplextendsHibernateDaoSupportimplements IStudentDao {//添加
@Override
publicvoidsaveStudent(Studentstudent) {
this.getHibernateTemplate().save(student);
}
//修改
@Override
publicvoidupdateStudent(Studentstudent) {
this.getHibernateTemplate().update(student);
}
//删除
@Override
publicvoiddelStudent(Studentstudent) {
this.getHibernateTemplate().delete(student);
}
//根据编号查询
@Override
publicStudentgetStudentById(intsid) {
returnthis.getHibernateTemplate().get(Student.class, sid);
}
//查询全部
@Override
public List<Student> getStudentAll() {
returnthis.getSession().createQuery("from Student").list();
}}

21.创建Service接口,IStudentService:

IStudentService中的代码:

22.创建Service的实现类,StudentServiceImpl。

在类中先创建dao层的对象,并且需要getters和setters

StudentServiceImpl中的代码:

public class StudentServiceImpl implements IStudentService {
//创建dao层的对象,需要getter和setter
private IStudentDao studentDao;
@Override
public void saveStudent(Student student) {
studentDao.saveStudent(student);
}@Override
public void updateStudent(Student student) {
studentDao.updateStudent(student);
}@Override
public void delStudent(Student student) {
studentDao.delStudent(student);
}@Override
public Student getStudentById(int sid) {
return studentDao.getStudentById(sid);
}@Override
public ListgetStudentAll() {
return studentDao.getStudentAll();
}/**
* @author Mu Xiongxiong
* @created 2020-4-30 下午2:47:37
* @return type
* 个人博客:https://blog.csdn.net/qq_34137397
*/
public IStudentDao getStudentDao() {
return studentDao;
}/**
* @author Mu Xiongxiong
* @created 2020-4-30 下午2:47:37
* @param studentDao
* 个人博客:https://blog.csdn.net/qq_34137397
*/
public void setStudentDao(IStudentDao studentDao) {
this.studentDao = studentDao;
}}

23.创建applicationContext-dao.xml文件(可以复制一份applicationContext.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: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.1.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
"><bean id="studentDao" class="org.dao.impl.StudentDaoImpl">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>
</beans>

24.创建applicationContext-service.xml文件(可以复制一份applicationContext-dao.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: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.1.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
"><bean id="studentService" class="org.service.impl.StudentServiceImpl">
<property name="studentDao" ref="studentDao"></property>
</bean>
</beans>

25.创建StudentAction类,继承ActionSupport.

StudentAction里面的代码,省略展示getters和setters的方法:

26.配置Struts.xml文件:

version="1.0" encoding="UTF-8" ?>
DOCTYPEstrutsPUBLIC"-//Apache Software Foundation//DTD Struts Configuration 2.1//EN""http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
<package name="default" extends="struts-default">
<action name="StudentAll" class="org.web.StudentAction" method="StudentAll">
<result name="success">index.jsp</result>
</action>
</package>
</struts>

27.index.jsp页面,需要将学生信息用table的形式展示出来

首先在最上面添加jstl的标签库:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

写一个table表格遍历信息:

<table border="1"><tr><td>学号</td><td>姓名</td><td>密码</td><td>电话</td><td>年级</td><td>操作</td></tr>
<c:forEach items="${studentList }" var="stu"><tr><td>${stu.sid }</td><td>${stu.sname}</td><td>${stu.spass }</td><td>${stu.sphone }</td><td>${stu.grade.gname }</td><td><a href="getStudentByid?sid=${stu.sid }">修改a>|<a href="delStudent?sid=${stu.sid }">删除a></td></tr>
</c:forEach>
</table>
‍

28. 创建applicationContext-action.xml文件(可以复制一份applicationContext-dao.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: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.1.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
"><bean id="studentAction" class="org.web.StudentAction">
<property name="studentService" ref="studentService"></property>
</bean>
</beans>

29.在applicationContext.xml中引入applicationContext-dao.xml, applicationContext-service.xml, applicationContext-action.xml文件,引入方式:

运行结果:

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/325207.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Unity 游戏用XLua的HotFix实现热更原理揭秘

本文通过对XLua的HoxFix使用原理的研究揭示出来这样的一套方法。这个方法的第一步&#xff1a;通过对C#的类与函数设置Hotfix标签。来标识需要支持热更的类和函数。第二步&#xff1a;生成函数连接器来连接LUA脚本与C#函数。第三步&#xff1a;在C#脚本编译结束后&#xff0c;使…

JavaFX官方教程(四)之Hello World,JavaFX样式

翻译自 Hello World&#xff0c;JavaFX Style 教你创建和构建JavaFX应用程序的最佳方法是使用“Hello World”应用程序。本教程的另一个好处是&#xff0c;它使您能够测试您的JavaFX技术是否已正确安装。 本教程中使用的工具是NetBeans IDE 7.4。在开始之前&#xff0c;请确…

WebAssembly,开发者赢了

自从WebAssembly标准发布以及各大浏览器完成对其默认支持之后&#xff0c;WebAssembly成为前端热门话题。在WebAssembly之前&#xff0c;类似的前端二进制标准有火狐主导的asm.js和Chrome主导的PNaCl。二者均用于将后端C/C代码用于前端&#xff0c;作为它们折中方案&#xff0c…

JavaFX官方教程(五)之在JavaFX中创建表单

翻译自 在JavaFX中创建表单 在开发应用程序时&#xff0c;创建表单是一项常见活动。本教程将向您介绍屏幕布局的基础知识&#xff0c;如何将控件添加到布局窗格以及如何创建输入事件。 在本教程中&#xff0c;您将使用JavaFX构建如图4-1所示的登录表单。 图4-1登录表单 本入…

来腾讯云开发者实验室 学习.NET

腾讯云开发者实验室为开发者提供了一个零门槛的在线实验平台,开发者实验室提供的能力&#xff1a; 零门槛扫码即可免费领取实验机器&#xff0c;支持使用自有机器参与&#xff0c;实验完成后支持保留实验成果&#xff1b; 在线WEBIDE支持shell命令操作&#xff0c;支持机器文件…

JavaFX官方教程(六)之带有JavaFX CSS的花式表单

翻译自 带有JavaFX CSS的花式表单 本教程通过添加级联样式表&#xff08;CSS&#xff09;使您的JavaFX应用程序看起来很有吸引力。您开发设计&#xff0c;创建.css文件并应用新样式。 在本教程中&#xff0c;您将获取一个使用标签&#xff0c;按钮和背景颜色的默认样式的登录…

搭建ssh框架的步骤

1.创建web项目 2.导入ssh 所需要的多有jar包&#xff0c;到web-inf下面的lib里面 3.将导入过来的jar包都build–path一下 4.切换到myeclipse database视图中&#xff0c;添加链接数据库的链接 5.新建一个数据库连接&#xff1a; 常用数据库连接字符串&#xff1a;https://blog.…

JavaFX官方教程(七)之使用FXML创建用户界面

翻译自 使用FXML创建用户界面 本教程展示了使用JavaFX FXML的好处&#xff0c;JavaFX FXML是一种基于XML的语言&#xff0c;它提供了构建与代码的应用程序逻辑分开的用户界面的结构。 如果您从一开始就开始使用本文档&#xff0c;那么您已经了解了如何使用JavaFX创建登录应用…

DllImport 自动选择x64或x86 dll

前言 标题不知道怎么确切地命名&#xff0c;在.net的托管世界里&#xff0c;有时不得不使用c的某个动态库&#xff0c;比如ocr、opencv等&#xff0c;如果幸运&#xff0c;有前人已经包装出.net版本&#xff0c;但有些不非常流行的库&#xff0c;只能自己使用pinvoke或c cli包…

JavaFX官方教程(八)之JavaFX中的动画和视觉效果

翻译自 JavaFX中的动画和视觉效果 您可以使用JavaFX快速开发具有丰富用户体验的应用程序。在本入门教程中&#xff0c;您将学习如何使用非常少的编码创建动画对象并获得复杂的效果。 图7-1显示了要创建的应用程序。 图7-1彩色圆圈应用 图7-2显示了该ColorfulCircles应用程序…

广搜(初见)

以下是广搜水题 题意&#xff1a;输入一个n*n的迷宫&#xff0c;输入从起点到终点的最短路 输入&#xff1a; 12 //迷宫大小 2 9 11 8 //起点和终点 1 1 1 1 1 1 1 1 1 1 1 1 //邻接矩阵&#xff0c;0表示通&#xff0c;1表示不通 1 0 0 0 0 0 0 1 0 1 1 1 1 0 1 0 1 1 0 …

.Net Core 图片文件上传下载

当下.Net Core项目可是如雨后春笋一般发展起来&#xff0c;作为.Net大军中的一员&#xff0c;我热忱地拥抱了.Net Core并且积极使用其进行业务的开发&#xff0c;我们先介绍下.Net Core项目下实现文件上传下载接口。 一、开发环境 毋庸置疑&#xff0c;宇宙第一IDE VisualStu…

JavaFX官方教程(九)之转换

翻译自 Transformations Overview 本章介绍JavaFX中支持的转换。 所有转换都位于javafx.scene.transform包中&#xff0c;并且是类的子Transform类。 介绍转换 变换根据某些参数改变坐标系中图形对象的位置。JavaFX支持以下类型的转换&#xff1a; 翻译 回转 缩放 剪毛 …

广搜(练习4题)

几道例题还比较简单&#xff0c;练习就卡了比较长的时间了(。_。) 所以我会写一下解题思路了(๑ŐдŐ) 还有博客抽风所以代码里会有一些奇奇怪怪的东西&#xff0c;无视就好了qwq。 这几道题我就按各人认为的难易程度来排序吧QAQ。 第一题. 题意&#xff1a;输入一个迷宫&…

谈一下我们是怎么做数据库单元测试(Database Unit Test)的

背景介绍 最近在团队在做release之前的regression,把各个feature分支merge回master之后发现DB的单元测试出现了20多个失败的test cases。之前没怎么做过DB的单元测试&#xff0c;正好借这个机会熟悉一下写DB单元测试的流程。 这篇博文中首先介绍一下在我们的特定项目场景中是…

JavaFX官方教程(十)之转换类型和示例

翻译自 Transformation Types and Examples 本文档描述了特定的转换并提供了代码示例。 转换 平移变换沿着相对于其初始位置的一个轴将节点从一个位置移动到另一个位置。木琴条的初始位置由x&#xff0c;y和z坐标定义。在实施例2-1中&#xff0c;初始位置值由指定的xStart&a…

Web前端知识体系精简

Web前端技术由html、css和javascript三大部分构成&#xff0c;是一个庞大而复杂的技术体系&#xff0c;其复杂程度不低于任何一门后端语言。而我们在学习它的时候往往是先从某一个点切入&#xff0c;然后不断地接触和学习新的知识点&#xff0c;因此对于初学者很难理清楚整个体…