使用Spring Boot+MyBatis框架做查询操作的示例代码

时间:2021-05-19

一.在你建立的工程下创建 Module 选择Spring initializr创建。

二.在Type处选择: Maven Project(项目的构建工具)

三.创建依赖时勾上web,mybatis,mysql(这个看你个人需要吧,可以自主选择)

建立好的项目结构如下:

注意:application.properties和application.yml是同一个东西,均为项目的核心配置文件

内容如下:

#连接数据库spring.datasource.url=jdbc:mysql://localhost:3306/smbmsspring.datasource.username=rootspring.datasource.password=1234spring.datasource.driverClassName=com.mysql.jdbc.Driver#引入mybatis的配置文件mybatis: mybatis.mapper-locations=classpath:mapper/*.xml mybatis.type-aliases-package=com.example.sprboot.pojo

相应的pom.xml文件

<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.49</version> </dependency> <!--使用thymeleaf标签--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build></project>

相应的接口UserMapper如下:

@Repositorypublic interface UserMapper { List<User> getList();}

service如下:

public interface UserService { List<User> getList();}

impl如下:

@Servicepublic class UserServiceImpl implements UserService { @Resource private UserMapper userMapper; @Override public List<User> getList() { return userMapper.getList(); }}

在resources中建一个文件夹mapper里面放mapper.xml文件,代码如下:

<select id="getList" resultType="User"> select * from smbms_user</select>

在templates文件夹中建html文件(注意:Spring Boot中不能跳转到.jsp文件,所以只能用html)

核心代码如下:

<table> <th>工号</th> <th>用户名</th> <th>姓名</th> <th>性别</th> <th>生日</th> <th>电话</th> <th>地址</th> <th>创建时间</th> <tr th:each="user : ${users}"> <td th:text="${user.id}"></td> <td th:text="${user.userCode}"></td> <td th:text="${user.userName}"></td> <td th:text="${user.gender}"></td> <td th:text="${user.birthday}"></td> <td th:text="${user.phone}"></td> <td th:text="${user.address}"></td> <td th:text="${user.createdBY}"></td> </tr></table>

此处有一个th标签,需要引入一个<html xmlns:th="http://www.thymeleaf.org">

并在pom.xml中引入对应的jar包(html中不能使用jstl表达式)

大家可以扩展一下thymeleaf的知识

控制器代码如下:

@Controllerpublic class UserController { @Resource private UserService userService;@RequestMapping("/") public String getStuinforList(HttpServletRequest request, Model model){ List<User> list=userService.getList(); model.addAttribute("users",list); System.out.println(list); return "/index.html"; }}

注:在调通的时候,可能会报很多的错,基本上都是注解的使用出错,希望各位能够细心点

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章