IDEA搭建SpringBoot+mybatis+thymeleaf项目

最近有朋友要搭建这样一个项目,网上博客也很多,但是因为有的加了很多插件,导致搭建后出现各种问题,让我帮他搭建一个纯净的项目(带有一个用户表的添加和查询示例)

首先创建数据库(一个 user表 里面三个字段  id为主键 自增)

IDEA搭建SpringBoot+mybatis+thymeleaf项目_第1张图片

现在开始创建项目了

1.打开IDEA 点击Create New Project (我电脑jdk是1.8  所以project SDK 默认就是1.8)

IDEA搭建SpringBoot+mybatis+thymeleaf项目_第2张图片

2. 点击Next 进入下一步(页面如下图),项目默认为maven项目

IDEA搭建SpringBoot+mybatis+thymeleaf项目_第3张图片

3.下一步,选择依赖 (本项目选择了 Web(web项目嘛),模板引擎 thymeleaf,数据库 mysql,jdbc,mybatis)

IDEA搭建SpringBoot+mybatis+thymeleaf项目_第4张图片

 4.下一步,填写项目名,设置项目存放路径(我这里做示例 所以就默认的了)

IDEA搭建SpringBoot+mybatis+thymeleaf项目_第5张图片

5. 点击finish,然后项目就建好了,下面是项目的目录结构(因为下博客的时候 我的项目是已经搭完的,所以在example下面多了好多文件夹,你们现在是只有demo文件夹下有个**Application的类(我这里把DemoApplication类移到example包下,然后把demo删掉了),后面一步一步的来)

 

IDEA搭建SpringBoot+mybatis+thymeleaf项目_第6张图片

下面开始写user表的添加和查询了

(本来想用mybatis的一个生产工具来生产实体类 dao xml配置文件的,奈何我的数据库是8.0的,与低版本的数据库登录验证方式变了,就是工具用不了了,啊啊啊 好啰嗦)

1.首先把文件夹建完   在java.com.example下面分别创建 entity,dao,service,controller 然后在service下面创建impl (前面创建的是包 package),在resources下创建 mapper文件夹

2.然后在class下创建User类 ,三个私有属性  实现get set方法

package com.example.entity;

public class User {

    private Integer id;
    private String name;
    private Integer age;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }
}

 3.在dao下创建UserMapper接口(注意需要mapper注解)

package com.example.dao;

import com.example.entity.User;
import org.apache.ibatis.annotations.Mapper;

import java.util.List;

@Mapper
public interface UserMapper {

    int save(User user);

    List findByAll();
}

4.在service下创建UserService接口

package com.example.service;

import com.example.entity.User;

import java.util.List;

public interface UserService {

    int save(User user);

    List findBaAll();
}

5.在impl包下创建UserServiceImpl类 实现UserService接口

package com.example.service.impl;

import com.example.dao.UserMapper;
import com.example.entity.User;
import com.example.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

@Service
public class UserServiceImpl implements UserService {

    @Autowired
    private UserMapper userMapper;

    @Override
    public int save(User user) {
        return userMapper.save(user);
    }

    @Override
    public List findBaAll() {
        return userMapper.findByAll();
    }
}

6.在controller下创建UserController类

package com.example.controller;

import com.example.entity.User;
import com.example.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

import java.util.List;

@Controller
public class UserController {

    @Autowired
    private UserService userService;

    //默认访问test页面
    @RequestMapping("/")
    public String index() {
        return "test";
    }

    //保存user数据
    @RequestMapping("/save")
    public String save(User user, Model model){
        userService.save(user);
        List list = userService.findBaAll();
        model.addAttribute("list",list);
        return "test";
    }

    //查询user数据
    @RequestMapping("/findByAll")
    public String findByAll(){
        return "test";
    }

}

7.在resources下的mapper文件夹下创建UserMapper.xml配置文件




  
    
    
    
  

  
    id, name, age
  

  
  
    insert into USER (id, name, age) values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{age,jdbcType=INTEGER})
  

  
  



 8.在templates文件夹下创建test.html文件




    
    thymeleaf test


    

姓名:

年龄:


序号 姓名 年龄
序号 姓名 年龄

9.修改配置文件application.properties

#扫描实体类
mybatis.type-aliases-package=com.example.entity
#扫描映射文件
mybatis.mapper-locations: classpath:mapper/*.xml

#配置数据库
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/test?characterEncoding=utf8&useSSL=false&autoReconnect=true&failOverReadOnly=false&autoReconnectForPools=true
spring.datasource.username=root
spring.datasource.password=root

#过滤静态资源
spring.mvc.static-path-pattern=/**

#指定系统直接访问路径
spring.resources.static-locations = classpath:/templates/,classpath:/META-INF/resources/,classpath:/resources/
#热部署:修改后台文件保存后自动重启
#spring.devtools.restart.enabled=true

#Messages资源信息
#spring.messages.basename=messages

#关闭thymeleaf缓存 开发时使用 否则没有实时画面
spring.thymeleaf.cache=false

#设置端口号  默认8080
server.port=80

ok 现在都写好好了  ,源码基本上也都贴出来了,看效果

IDEA搭建SpringBoot+mybatis+thymeleaf项目_第7张图片

年龄是int类型 所以输入框输入字符会报错 本来想用js加个验证,懒得找js文件就算了 o(* ̄︶ ̄*)o

最后个人一点建议:文件命名 最好与数据库表名一致,包括controller的访问也是,一个是自己方便另外别人维护的时候也容易看懂你的模块的结构(ps:最近维护别人的代码  我心里一直在骂 ***)

源码 :链接:https://pan.baidu.com/s/11CBVmtT0efj7nKZk3WPF9A 密码:q0zp

你可能感兴趣的:(SpringBoot)