多平台统一管理软件接口,如何实现多平台统一管理软件接口
224
2022-12-04
Idea+maven搭建SSH(struts2+hibernate5+spring5)环境的方法步骤
最近要使用 SSH 来编写期末的考核任务,之前也在网上查阅了很久,也试出了很多的问题。也很感谢很多前辈们的总结,我也查到了很多用用的内容。
本次项目,我将以一个简单的登录案例实现 SSH 的项目整合,项目我会放到 github 上面,需要的同学可以 clone 下来在本地跑一跑
项目地址:SSH 脚手架
一、项目环境搭建
使用 maven 搭建一个 java Web 项目
1.1 配置 Spring 坐标依赖
引入 Spring 坐标依赖
1.2 配置 hibernate 坐标依赖
我们的目标是要整合 SSH,所以需要 hibernate 的核心依赖, mysql 数据库驱动,以及 c3p0 数据库连接池
1.3 配置 struts2 坐标依赖
我们需要 struts 核心,以及 struts 整合 spring 的插件,以及 struts 对 json 数据处理的插件
<!-http://- json 数据处理,struts 插件 -->
1.4 配置Java EE 坐标依赖
这里可以引入 servlet api,jstl 标签库等一系列工具
1.5 其他工具
json 处理工具
二、项目结构搭建
2.1 配置文件
使用如下方式创建
1.applicationContext.xml
2.jdbc.properties
3.struts.xml
2.2 包结构
创建如下的基本包结构
三、编写配置文件
3.1 web.xml 文件配置
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd" >
3.2 编写 jdbc.properties 文件
这里我们需要自己手动修改数据库的信息配置
jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.jdbcUrl=jdbc:mysql://localhost:3306/hibernate?characterEncoding=utf-8&autoReconnect=true&useSSL=false
jdbc.user=root
jdbc.password=root
#连接池中保留的最小连接数
jdbc.minPoolSize=1
#连接池中保留的最大连接数
jdbc.maxPoolSize=20
#初始化连接数
jdbc.initialPoolSize=1
3.3 编写 applicationContext.xml 配置文件
这里面也包含了数据库的基本配置
xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xmlns:tx="http://springframework.org/schema/tx" xmlns:context="http://springframework.org/schema/context" xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans.xsd http://springframework.org/schema/tx http://springframework.org/schema/tx/spring-tx.xsd http://springframework.org/schema/context http://springframework.org/schema/context/spring-context.xsd"> org.hibernate.dialect.MySQLDialect
xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xmlns:tx="http://springframework.org/schema/tx"
xmlns:context="http://springframework.org/schema/context"
xsi:schemaLocation="http://springframework.org/schema/beans
http://springframework.org/schema/beans/spring-beans.xsd
http://springframework.org/schema/tx
http://springframework.org/schema/tx/spring-tx.xsd
http://springframework.org/schema/context
http://springframework.org/schema/context/spring-context.xsd">
org.hibernate.dialect.MySQLDialect
3.4 struts 配置文件
我们还没有编写的具体的 action 服务,所以这里先跳过
四、使用 hibernate 逆向生成工具生成实体
4.1 配置数据库连接信息
使用 idea 自带的数据库连接的工具
完善基本配置信息
4.2 逆向生成实体类
4.3 实体类配置
生成好后可以看到和数据库对应的实体类,我的表很简单,一个简单的用户表,只有 id, username, password 字段
但是我们发现里面的部分内容会爆红,这是因为我们没有指定数据源
选择我们刚才连接的数据库
然后就没问题了。
五、JavaBean 编写
看到包结构,大家应该可以猜出来,我是使用的典型的 MVC 三层架构来编写的
5.1 编写 dao 层
创建 UserDao 以及 它的实现类 UserDaoImpl
UserDao 编写
package dao;
import entity.User;
public interface UserDao {
// 用户登录验证
public User selectByUsernameAndPassword(String username, String password);
}
UserDaoImpl
package dao.Impl;
import dao.UserDao;
import entity.User;
import org.hibernate.Session;
import org.hibernate.query.Query;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.orm.hibernate5.HibernateTemplate;
import org.springframework.stereotype.Repository;
import javax.annotation.Resource;
// 使用 Spring 来接管持久层的所有操作
@Repository
public class UserDaoImpl implements UserDao {
// 使用 Hibernate 提供的模板
@Autowired
@Resource
private HibernateTemplate hibernateTemplate;
// 生成对应的 get 和 set 方法
public HibernateTemplate getHibernateTemplate() {
return hibernateTemplate;
}
public void setHibernateTemplate(HibernateTemplate hibernateTemplate) {
this.hibernateTemplate = hibernateTemplate;
}
@Override
public User selectByUsernameAndPassword(String username, String password) {
// 登录的逻辑不算难,就是使用 sql 语句查询,username 和 password 两个字段是否存在即可,我们使用的是 hibernate 框架,所以要写 hql 语句
Session session = hibernateTemplate.getSessionFactory().openSession();
Query q = session.createQuery("from User u where u.username = ? and u.password = ?");
q.setParameter(0,username);
q.setParameter(1,password);
User u = (User) q.uniqueResult();
return u;
}
}
我们写好了 dao 层,这时候发现出现了爆红的问题,这里我们需要手动添加项目的依赖信息
点击 project structure
添加这个就可以了,问题就解决了
显示正常了
5.2 编写 Service 层
同样,我们创建对应的 UserService 和 对应的 UserServiceImpl 类
有的同学可能会问道,不就是一个简单的登录功能嘛,有必要这么麻烦吗?是的,这么做确实没必要,但是随着项目的越来越大,只有把具体的功能全部分开来做,这样才不至于整个项目太过于乱
编写用户的业务层 接口 UserService
package service;
import entity.User;
public interface UserService {
// 登录验证
User checklogin(String username, String password);
}
编写 业务层对应的实现类 UserServiceImpl
package service.Impl;
import dao.UserDao;
import entity.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import service.UserService;
@Service
public class UserServiceImpl implements UserService {
// 这里业务层调用持久层的方法
@Autowired
private UserDao ud;
@Override
public User checklogin(String username, String password) {
return ud.selectByUsernameAndPassword(username,password);
}
}
5.3 编写 Controller 层 (UserAction)
这里的逻辑思路,是 controller 层 调用 service 的方法,service 层调用 dao 层的方法
packhttp://age action;
import com.opensymphony.xwork2.ActionContext;
import entity.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import service.UserService;
import java.util.Map;
// 使用 Controller 表示这是控制层,使用 ua 表示这个类被 Spring 所管理
@Controller("ua")
public class UserAction {
// 编写两个属性,使用 struts2 的 ognl 表达式可以直接接收到前端穿过来的数据,不再需要 request.getParameter("xxxx") 接收数据了
private String username;
private String password;
// 调用业务层的方法
@Autowired
private UserService us;
// get 方法可以不要, set 方法必须有,不然前端的数据就无法注入进来
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;
}
// 编写登录逇控制层方法
public String login() {
System.out.println(username + " " + password); // 打印穿过来的数据
ActionContext ac = ActionContext.getContext();
// 得到 servlet 中的三大域的 session 域,在这里我们要将数据保存至 session,并在前端展示
Map
User user = us.checklogin(username,password); // 登录验证
if ( user!=null ) {
session.put("user",username);
return "success";
} else {
return "error";
}
}
}
5.4 编写 struts 路由映射
记得在 Project Structure 添加如下配置
stucts action 配置
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">
六、前端界面编写
6.1 登录界面编写
<%--
Created by IntelliJ IDEA.
User: Gorit
Date: 2020/6/13
Time: 23:18
Contact: gorit@qq.com
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
6.1 登录成功
<%--
Created by IntelliJ IDEA.
User: Gorit
Date: 2020/6/13
Time: 23:21
Contact: gorit@qq.com
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
6.3 登录失败
<%--
Created by IntelliJ IDEA.
User: Gorit
Date: 2020/6/13
Time: 23:21
Contact: gorit@qq.com
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~