【狂神说】SMBMS
本项目基于狂神说Java
的SMBMS项目,用于个人学习。
开发工具
IntelliJ IDEA 2022.2.3 MySQL9.0 Tomcat 9
项目架构:
项目主要分为四个核心模块(狂神的B站课程只更新到用户管理的用户列表页面内容,为了练手,我们继续往下走,实现全部模块,这里我们主要将注意力放在后端,读者朋友们可以在后台回复static
获取所有静态资源)
-
登录注销 -
用户管理 -
订单管理 -
供应商管理
1、数据库表
项目需要用到以下数据表,读者朋友可在公众号后台回复sql
获得创建所有数据库表的sql。
可通过smbms.sql
一键生成项目所需要的数据表。
1.1、用户表
1.2、角色表
1.3、地址表
1.4、账单表
1.5、供应商表
2、搭建项目
2.1、创建webapp项目(Maven)
注意:勾选的原型是maven-archetype-webapp
2.2、完善项目结构
1. 更新web.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0"
metadata-complete="true">
</web-app>
2. 在pom.xml中导入依赖包
jsp servlet 数据库连接 jstl standard
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!--servlet依赖-->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
</dependency>
<!--jsp依赖-->
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
<version>2.3.3</version>
<scope>provided</scope>
</dependency>
<!--jstl依赖-->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<!-- standard -->
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
<!--连接mysql依赖-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.31</version>
</dependency>
</dependencies>
3. 完善项目的包结构
完善项目结构
java
dao:数据持久化层,用于操作数据库 filter:过滤器 pojo:实体类 service:业务层,调用dao层处理业务 servlet:调用service层处理业务 util:工具类 resources:存放资源文件 webapp:项目资源
2.3、配置tomcat
选择war包
修改路径为/smbms
启动tomcat服务,访问成功,注意这个路径就是我们前面配置tomcat时设置的路径。
2.4、在idea中连接数据库
datasource选择MySQL
填写数据库配置,测试连接。
2.5、创建实体类
ORM映射,表->类。由于地址表并没有具体含义,因此只需要创建四张表的实体类。
1. User
pojo-User.java
除了User
表的字段,这里还增加了两个字段:age
(年龄)和userRoleName
(用户角色名称)字段。其中年龄字段通过当前时间-出生时间获得,用户角色名称字段是为了匹配用户角色表。其他字段的get和set方法直接通过IDEA快速创建(篇幅原因省略这部分代码)。
package com.thomas.pojo;
import java.util.Date;
/**
* @Author GeekThomas
* @Date 2023/1/12 11:12
* @Description User用户表实体类
* @Since version-1.0
*/
public class User {
private Integer id; //用户id
private String userCode; //用户编码
private String userName; //用户名称
private String userPassword; //用户密码
private Integer gender; //用户性别(1:女、2:男)
private Date birthday; //出生日期
private String phone; //手机号码
private String address; //用户地址
private Integer userRole; //用户角色(取自角色表-角色id)
private Integer createdBy; //创建者(userId)
private Date creationDate; //创建时间
private Integer modifyBy; //更新者(userId)
private Date modifyDate; //修改时间
private Integer age; //年龄 通过当前时间-出生年份得出
private String userRoleName; //用户角色名称
public String getUserRoleName() {
return userRoleName;
}
public void setUserRoleName(String userRoleName) {
this.userRoleName = userRoleName;
}
public Integer getAge() {
Date date = new Date();
Integer age = date.getYear() - birthday.getYear();
return age;
}
...
}
2. Role
pojo-Role.java
直接参照Role
表的字段生成实体类,所有字段的get和set方法直接通过IDEA快速创建(篇幅原因省略这部分代码)。
package com.thomas.pojo;
import java.util.Date;
/**
* @Author GeekThomas
* @Date 2023/1/12 11:34
* @Description Role实体类
* @Since version-1.0
*/
public class Role {
private Integer id; //id
private String roleCode; //用户编码
private Integer createdBy; //创建者
private Date creationDate; //创建时间
private Integer modifyBy; //修改者
private Date modifyDate; //修改时间
...
}
3. Provider
pojo-Provider.java
直接参照Provider
表的字段生成实体类,所有字段的get和set方法直接通过IDEA快速创建(篇幅原因省略这部分代码)。
package com.thomas.pojo;
import java.util.Date;
/**
* @Author GeekThomas
* @Date 2023/1/12 11:38
* @Description 供应商实体类
* @Since version-1.0
*/
public class Provider {
private Integer id; //id
private String proCode; //供应商编码
private String proName; //供应商名称
private String proDesc; //供应商详细描述
private String proContact; //供应商联系人
private String proPhone; //联系电话
private String proFax; //传真
private Integer createdBy; //创建者(userId)
private Date creationDate; //创建时间
private Integer modifyBy; //更新者(userId)
private Date modifyDate; //修改时间
...
}
4. Bill
pojo-Bill.java
除了Bill
表的字段,这里还增加了providerName
(供应商名字)字段。所有字段的get和set方法直接通过IDEA快速创建(篇幅原因省略这部分代码)。
package com.thomas.pojo;
import java.math.BigDecimal;
import java.util.Date;
/**
* @Author GeekThomas
* @Date 2023/1/12 11:44
* @Description 订单表实体类
* @Since version-1.0
*/
public class Bill {
private Integer id; //id
private String billCode; //账单编码
private String productName; //商品名称
private String productDesc; //商品描述
private String productUnit; //商品单位
private BigDecimal productCount; //商品数量
private BigDecimal totalPrice; //商品总额
private Integer isPayment; //是否支付(1-未支付 2-已支付)
private Integer createdBy; //创建者(userId)
private Date creationDate; //创建时间
private Integer modifyBy; //更新者(userId)
private Date modifyDate; //修改时间
private String providerName; //供应商名字
...
}
2.6、编写BaseDao
1. 创建数据库配置文件
在resources
目录下创建db.properties
,写入数据库配置
driver=com.mysql.cj.jdbc.Driver
url=jdbc:mysql://localhost:3306/smbms?userUnicode=true%characterEncoding=utf-8
username=root
password=密码
2. 编写公共方法
编写公共方法,便于其他Dao直接调用
加载驱动(使用静态代码块) 获取数据库连接 执行SQL语句(增删改查) 关闭相关连接
dao-BaseDao.java
package com.thomas.dao;
import java.io.IOException;
import java.io.InputStream;
import java.sql.*;
import java.util.Properties;
/**
* @Author GeekThomas
* @Date 2023/1/12 13:30
* @Description 操作数据库的公共类
* @Since version-1.0
*/
public class BaseDao {
private static String driver;
private static String url;
private static String username;
private static String password;
//静态代码块,类加载的时候就初始化了
static {
Properties prop = new Properties();
//通过类加载器读取对应的资源
InputStream is = BaseDao.class.getClassLoader().getResourceAsStream("db.properties");
try {
prop.load(is);
} catch (IOException e) {
e.printStackTrace();
}
driver = prop.getProperty("driver");
url = prop.getProperty("url");
username = prop.getProperty("username");
password = prop.getProperty("password");
}
/**
* @Author GeekThomas
* @Date 2023/1/12 13:39
* @Description 获取数据库的连接
* @Param
* @Return {@link Connection}
* @Since version-1.0
*/
public static Connection getConnection() {
Connection connection = null;
try {
Class.forName(driver);
connection = DriverManager.getConnection(url, username, password);
} catch (Exception e) {
e.printStackTrace();
}
return connection;
}
/**
* @Author GeekThomas
* @Date 2023/1/12 13:45
* @Description 查询公共方法
* @Param connection
* @Param preparedStatement
* @Param resultSet
* @Param sql
* @Param params 查询sql中的参数
* @Return {@link ResultSet}
* @Since version-1.0
*/
public static ResultSet execute(Connection connection, PreparedStatement preparedStatement, ResultSet resultSet, String sql, Object[] params) throws SQLException {
preparedStatement = connection.prepareStatement(sql);
for (int i = 0; i < params.length; i++) {
//占位符从1开始,数组从0开始!
preparedStatement.setObject(i + 1, params[i]);
}
resultSet = preparedStatement.executeQuery();
return resultSet;
}
/**
* @Author GeekThomas
* @Date 2023/1/12 13:52
* @Description 编写增删改的公共方法
* @Param connection
* @Param preparedStatement
* @Param sql
* @Param params
* @Return {@link int}
* @Since version-1.0
*/
public static int execute(Connection connection, PreparedStatement preparedStatement, String sql, Object[] params) throws SQLException {
preparedStatement = connection.prepareStatement(sql);
for (int i = 0; i < params.length; i++) {
//占位符从1开始,数组从0开始!
preparedStatement.setObject(i + 1, params[i]);
}
int updateRows = preparedStatement.executeUpdate();
return updateRows;
}
/**
* @Author GeekThomas
* @Date 2023/1/12 13:58
* @Description 关闭资源
* @Param preparedStatement
* @Param resultSet
* @Return {@link boolean}
* @Since version-1.0
*/
public static boolean closeResources(Connection connection, PreparedStatement preparedStatement, ResultSet resultSet) {
boolean flag = true;
if (resultSet != null) {
try {
resultSet.close();
//GC回收
resultSet = null;
} catch (SQLException e) {
e.printStackTrace();
flag = false;
}
}
if (preparedStatement != null) {
try {
preparedStatement.close();
//GC回收
preparedStatement = null;
} catch (SQLException e) {
e.printStackTrace();
flag = false;
}
}
if (connection != null) {
try {
connection.close();
//GC回收
connection = null;
} catch (SQLException e) {
e.printStackTrace();
flag = false;
}
}
return flag;
}
}
2.7、过滤器
编写过滤器,解决乱码问题
filter-CharacterEncodingFilter.java
package com.thomas.filter;
import javax.servlet.*;
import java.io.IOException;
/**
* @Author GeekThomas
* @Date 2023/1/12 14:29
* @Description 处理乱码过滤器
* @Since version-1.0
*/
public class CharacterEncodingFilter implements Filter {
public void init(FilterConfig filterConfig) throws ServletException {
}
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
servletRequest.setCharacterEncoding("utf-8");
servletResponse.setCharacterEncoding("utf-8");
filterChain.doFilter(servletRequest, servletResponse);
}
public void destroy() {
}
}
注册Filter
web.xml
<filter>
<filter-name>CharacterEncodingFilter</filter-name>
<filter-class>com.thomas.filter.CharacterEncodingFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>CharacterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
2.8、导入资源
导入以下静态资源,注意要放在
webapp
目录下,读者朋友可在后台回复static
获取相关静态资源。
这样,我们就能简单将项目启动起来了,在之后的教程中,我们将会继续学习如何实现登录、用户管理相关功能,敬请期待~
原文始发于微信公众号(多肉罗罗):JavaWeb项目SMBMS(一)——搭建项目
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/186313.html