1. 引言
SSM框架和BootStrap框架都是现在较常用的开发框架,其中SSM框架(Spring + SpringMVC + MyBatis)是一套基于MVC设计思想的轻量级框架,可以简化代码的开发量和提高开发效率,而BootStrap作为一个前端开发框架,提供了众多美观的UI组件和响应式设计,可以快速地构建出适配多种终端的页面。本文将介绍如何使用SSM和BootStrap进行增删改查和头像上传的实现。
2. 技术准备
2.1 SSM框架
SSM框架是目前较为流行的一套轻量级开发框架,在进行SSM开发前,需要了解基本的Spring、SpringMVC、MyBatis概念。
Spring是一个轻量级的面向对象的控制反转(IoC)和面向切面编程(AOP)的框架,主要解决企业应用开发的复杂性和耦合性问题。
SpringMVC是Spring框架的一个模块,是一个基于MVC(Model-View-Controller)设计模式实现的Web框架,主要负责接收HTTP请求和返回JSON、XML等HTTP响应。
MyBatis是一套持久层框架,通过XML或注解的方式配置SQL,将Java对象映射成数据库中的表。
2.2 BootStrap框架
BootStrap是一套响应式设计的前端UI框架,提供了众多美观的组件,能够快速搭建出适配多种设备的页面。
2.3 IDEA集成开发环境
IDEA是当前Java开发中最为流行的一款IDE工具,本文中所使用的代码提交和查看都是在它的环境下进行的。
3. 实现步骤
3.1 搭建SSM框架环境
在搭建SSM框架之前,需要首先确保本地已经安装了JDK、Tomcat、Maven等开发工具和服务器,然后创建一个Maven项目,并且添加相关依赖。
以下代码为SSM框架的Maven依赖:
<dependencies>
<!-- Spring核心包 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.7.RELEASE</version>
</dependency>
<!-- SpringMVC模块 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.0.7.RELEASE</version>
</dependency>
<!-- MyBatis模块 -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.4.6</version>
</dependency>
<!-- MyBatis和Spring整合模块 -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.3.2</version>
</dependency>
<!-- 数据库连接池 -->
<dependency>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
<version>0.9.5.2</version>
</dependency>
<!-- Servlet API -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
</dependency>
<!-- Jackson依赖包 -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.5</version>
</dependency>
<!-- JSTL标准标签库 -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<!-- MySQL驱动包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.45</version>
</dependency>
</dependencies>
配置完Maven之后,还需要进行Spring、SpringMVC和MyBatis等的相关配置,具体配置可参考相关文档。
3.2 实现增删改查功能
实现增删改查功能需要编写Controller、Service、DAO和Mapper四个层次的相关代码,以User实体类为例进行说明。
3.2.1 编写User实体类
定义一个User实体类,包括id、用户名、密码、年龄、性别等相关属性和相应的get/set方法。
以下代码为User实体类:
public class User {
private Long id;
private String username;
private String password;
private Integer age;
private Integer sex;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username == null ? null : username.trim();
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password == null ? null : password.trim();
}
public Integer getAge() {
return age;
}
public void setAge(Integer age) {
this.age = age;
}
public Integer getSex() {
return sex;
}
public void setSex(Integer sex) {
this.sex = sex;
}
}
3.2.2 编写Mapper
使用MyBatis来编写User相关的Mapper文件,主要包括查询用户列表、查询用户信息、添加用户、修改用户信息和删除用户等相关操作。
以下代码为Mapper.xml:
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.example.mapper.UserMapper">
<!-- 查询用户列表 -->
<select id="selectByExample" resultType="com.example.model.User">
select
<if test="distinct">distinct</if>
id, username, password, age, sex
from user
<if test="example != null">
<if test="example.orderByClause != null">
order by ${example.orderByClause}
</if>
</if>
</select>
<!-- 查询用户信息 -->
<select id="selectByPrimaryKey" resultType="com.example.model.User">
select
id, username, password, age, sex
from user
where id = #{id,jdbcType=BIGINT}
</select>
<!-- 添加用户 -->
<insert id="insertSelective" parameterType="com.example.model.User" keyProperty="id" useGeneratedKeys="true">
insert into user (username, password, age, sex)
values (#{username,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}, #{age,jdbcType=INTEGER}, #{sex,jdbcType=INTEGER})
</insert>
<!-- 修改用户信息 -->
<update id="updateByPrimaryKeySelective" parameterType="com.example.model.User">
update user
<set>
<if test="username != null">
username = #{username,jdbcType=VARCHAR},
</if>
<if test="password != null">
password = #{password,jdbcType=VARCHAR},
</if>
<if test="age != null">
age = #{age,jdbcType=INTEGER},
</if>
<if test="sex != null">
sex = #{sex,jdbcType=INTEGER},
</if>
</set>
where id = #{id,jdbcType=BIGINT}
</update>
<!-- 删除用户 -->
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
delete from user
where id = #{id,jdbcType=BIGINT}
</delete>
</mapper>
3.2.3 编写DAO层
DAO层(数据访问层)的作用是与数据库进行交互,使用MyBatis定义的Mapper接口访问数据库中的数据。
以下代码为UserMapper接口和实现类:
public interface UserMapper {
int deleteByPrimaryKey(Long id);
int insertSelective(User record);
User selectByPrimaryKey(Long id);
int updateByPrimaryKeySelective(User record);
}
@Repository
public class UserMapperImpl implements UserMapper {
@Autowired
private UserMapper userMapper;
public int deleteByPrimaryKey(Long id) {
return userMapper.deleteByPrimaryKey(id);
}
public int insertSelective(User record) {
return userMapper.insertSelective(record);
}
public User selectByPrimaryKey(Long id) {
return userMapper.selectByPrimaryKey(id);
}
public int updateByPrimaryKeySelective(User record) {
return userMapper.updateByPrimaryKeySelective(record);
}
}
3.2.4 编写Service层
Service层(业务逻辑层)的作用是对外暴露业务方法,调用DAO层的方法来实现对数据库的增删改查。
以下代码为UserService接口和实现类:
public interface UserService {
int deleteByPrimaryKey(Long id);
int insertSelective(User record);
User selectByPrimaryKey(Long id);
int updateByPrimaryKeySelective(User record);
}
@Service
public class UserServiceImpl implements UserService {
@Autowired
private UserMapper userMapper;
public int deleteByPrimaryKey(Long id) {
return userMapper.deleteByPrimaryKey(id);
}
public int insertSelective(User record) {
return userMapper.insertSelective(record);
}
public User selectByPrimaryKey(Long id) {
return userMapper.selectByPrimaryKey(id);
}
public int updateByPrimaryKeySelective(User record) {
return userMapper.updateByPrimaryKeySelective(record);
}
}
3.2.5 编写Controller层
Controller层(控制器层)的作用是接收用户请求并且调用Service层的方法来进行相关操作。
@Controller
@RequestMapping(value = "/user", produces = "application/json;charset=UTF-8")
@ResponseBody
public class UserController {
@Autowired
private UserService userService;
@RequestMapping(value = "/get", method = RequestMethod.GET)
public User getUser(@RequestParam Long id) {
return userService.selectByPrimaryKey(id);
}
@RequestMapping(value = "/add", method = RequestMethod.POST)
public int addUser(@RequestBody User user) {
return userService.insertSelective(user);
}
@RequestMapping(value = "/update", method = RequestMethod.POST)
public int updateUser(@RequestBody User user) {
return userService.updateByPrimaryKeySelective(user);
}
@RequestMapping(value = "/delete", method = RequestMethod.POST)
public int deleteUser(@RequestBody User user) {
return userService.deleteByPrimaryKey(user.getId());
}
}
3.3 实现头像上传功能
使用Bootstrap框架可以方便地实现头像上传功能,只需要使用file类型的input控件,然后通过JavaScript实现文件上传即可。
3.3.1 添加文件上传页面
在SpringMVC中,使用form标签来提交表单,以post类型的请求方式提交数据。
以下代码为文件上传页面:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>头像上传</title>
<!-- 引入Bootstrap框架 -->
<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>头像上传</h2>
<hr>
<form action="/upload" method="post" enctype="multipart/form-data">
<div class="form-group">
<label for="file">请选择文件</label>
<input type="file" id="file" name="file" required>
</div>
<button type="submit" class="btn btn-default">上传头像</button>
</form>
</div>
</body>
</html>
3.3.2 实现文件上传逻辑
在Controller层中添加上传文件处理的方法,并且将上传的文件保存到