下面是Spring MVC 4.1.3 + MyBatis零基础搭建Web开发框架(注解模式)的完整攻略。
1. 环境搭建
- JDK安装及环境变量配置
- Maven安装及配置
- Eclipse/IDEA集成Maven插件及配置
2. 项目建立
- 利用Maven建立项目:新建Maven项目,设置GroupId、ArtifactId、Version等基本信息。
- 导入相关依赖:
spring-webmvc
、mybatis
、mysql-connector-java
等。 - 新建
src/main/resources
目录,创建Spring配置文件spring-mvc.xml
、MyBatis配置文件mybatis-config.xml
及数据库配置文件jdbc.properties
。
3. 数据库连接
在jdbc.properties
文件中配置数据库相关参数,如数据库连接地址、用户名、密码等:
jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8
jdbc.username=root
jdbc.password=
4. MyBatis映射
- 建立数据模型JavaBean,并在其中定义相关属性及Getter/Setter方法。
- 建立对应的Mapper映射文件,编写增删改查等基本SQL语句。
5. Spring MVC配置
- 在
spring-mvc.xml
文件中配置dataSource
、sqlSessionFactory
、transactionManager
等相关信息。 - 配置Spring MVC的控制器、视图解析器等信息。
6. 编写Controller和JSP
- 编写Controller类,利用
@RequestMapping
注解进行请求地址映射。 - 编写JSP页面,进行数据展示。
注:这里为了方便,只是简略介绍了整体建立过程。具体步骤和代码请参考完整的教程。
接下来,以两个示例说明具体步骤和代码。
示例1:用户信息查询
- 创建数据模型对象User
在src/main/java
目录下创建com.example.model.User.java
文件,定义用户信息相关属性及Getter/Setter方法:
package com.example.model;
public class User {
private int userId;
private String userName;
private int age;
public int getUserId() {
return userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
- 创建MyBatis映射文件UserMapper.xml
在src/main/resources
目录下创建com.example.mapper.UserMapper.xml
文件,定义用户信息相关的SQL语句操作:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD MappeR 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.example.mapper.UserMapper">
<resultMap id="userMap" type="com.example.model.User">
<id column="id" property="userId"/>
<result column="username" property="userName"/>
<result column="age" property="age"/>
</resultMap>
<select id="getUserById" resultMap="userMap">
select * from user where id = #{id}
</select>
<select id="getAllUser" resultMap="userMap">
select * from user
</select>
</mapper>
- 新建Controller类
在src/main/java
目录下创建com.example.controller.UserController.java
文件,定义用户信息查询控制器:
package com.example.controller;
import com.example.mapper.UserMapper;
import com.example.model.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
import java.util.List;
@Controller
@RequestMapping("/user")
public class UserController {
@Autowired
private UserMapper userMapper;
@RequestMapping("/getUserById")
public ModelAndView getUserById(int id) {
User user = userMapper.getUserById(id);
ModelAndView modelAndView = new ModelAndView("user");
modelAndView.addObject("user", user);
return modelAndView;
}
@RequestMapping("/getAllUser")
public ModelAndView getAllUser() {
List<User> userList = userMapper.getAllUser();
ModelAndView modelAndView = new ModelAndView("userList");
modelAndView.addObject("userList", userList);
return modelAndView;
}
}
- 新建JSP页面
在src/main/webapp/WEB-INF/views
目录下创建user.jsp
和userList.jsp
页面,用于展示用户信息:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>User Info</title>
</head>
<body>
<table>
<tr>
<th>ID</th>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td><%= request.getAttribute("user.userId") %></td>
<td><%= request.getAttribute("user.userName") %></td>
<td><%= request.getAttribute("user.age") %></td>
</tr>
</table>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>User List</title>
</head>
<body>
<table>
<tr>
<th>ID</th>
<th>Name</th>
<th>Age</th>
</tr>
<%
List<User> userList = (List<User>)request.getAttribute("userList");
for(User user : userList) { %>
<tr>
<td><%= user.getUserId() %></td>
<td><%= user.getUserName() %></td>
<td><%= user.getAge() %></td>
</tr>
<% } %>
</table>
</body>
</html>
- 配置Spring MVC
在src/main/resources/spring-mvc.xml
文件中配置控制器、视图解析器等信息:
<mvc:annotation-driven />
<context:component-scan base-package="com.example.controller" />
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/views/" />
<property name="suffix" value=".jsp" />
</bean>
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${jdbc.driverClassName}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
</bean>
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="mapperLocations" value="classpath:com/example/mapper/*.xml" />
<property name="configLocation" value="classpath:mybatis-config.xml" />
</bean>
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>
<mybatis:scan base-package="com.example.mapper" />
- 测试
运行项目,打开浏览器,输入地址http://localhost:8080/user/getUserById?id=1 或 http://localhost:8080/user/getAllUser,即可查看查询到的用户信息。
示例2:添加新用户
- 添加数据模型对象NewUser
与示例1中的数据模型相同,不再赘述。
- 创建MyBatis映射文件NewUserMapper.xml
在src/main/resources
目录下创建com.example.mapper.NewUserMapper.xml
文件,定义新增用户相关的SQL语句操作:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD MappeR 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.example.mapper.NewUserMapper">
<insert id="addUser" useGeneratedKeys="true" keyProperty="id">
insert into user(username, age) values(#{userName}, #{age})
</insert>
</mapper>
- 新建Controller类
在src/main/java
目录下创建com.example.controller.NewUserController.java
文件,定义用户信息新增控制器:
package com.example.controller;
import com.example.mapper.NewUserMapper;
import com.example.model.NewUser;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
@Controller
@RequestMapping("/newUser")
public class NewUserController {
@Autowired
private NewUserMapper newUserMapper;
@RequestMapping("/addUser")
public ModelAndView addUser(NewUser newUser) {
newUserMapper.addUser(newUser);
ModelAndView modelAndView = new ModelAndView("add");
return modelAndView;
}
}
- 新建JSP页面
在src/main/webapp/WEB-INF/views
目录下创建add.jsp
页面,用于展示新增用户后的结果:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Add Result</title>
</head>
<body>
<p>New user added successfully!</p>
</body>
</html>
- 配置Spring MVC
在src/main/resources/spring-mvc.xml
文件中新增Mapper扫描配置:
<mybatis:scan base-package="com.example.mapper" />
- 测试
运行项目,打开浏览器,输入地址http://localhost:8080/newUser/addUser?userName=test&age=20,即可添加一个年龄为20、姓名为test的新用户,并查看新增结果。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Spring MVC 4.1.3 + MyBatis零基础搭建Web开发框架(注解模式) - Python技术站