首先声明:第一次写。如果有什么问题的话!顺着网线过来打我啊~~
开始吧。
第一步:创建maven项目
对maven不是很了解的自行百度咯。因为重点不是maven。
第二步:添加依赖
打开pom.xml文件。
添加SpringBoot与MyBatis与MySql的依赖。
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.drip</groupId>
<artifactId>Test</artifactId>
<version>0.0.1-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.0.RELEASE</version>
<relativePath />
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- MYSQL依赖 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<!-- mybatis依赖 -->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
这个时候项目可能会报错,因为相关jar包还没有引进来。右键点击项目,选择Maven→Update Project→OK。
第三步:新建application.properties配置文件
在在src/main/resources下新建application.properties文件并添加以下内容。
#JPA configure
spring.datasource.url = jdbc:mysql://localhost:3306/name
spring.datasource.username = root
spring.datasource.password = 123
spring.datasource.driverClassName = com.mysql.jdbc.Driver
# Specify the DBMS
spring.jpa.database = MYSQL
# Show or not log for each sql query
spring.jpa.show-sql = true
# DDL mode. This is actually a shortcut for the "hibernate.hbm2ddl.auto" property. Default to "create-drop" when using an embedded database, "none" otherwise.
spring.jpa.hibernate.ddl-auto = update
# Hibernate 4 naming strategy fully qualified name. Not supported with Hibernate 5.
spring.jpa.hibernate.naming.strategy = org.hibernate.cfg.ImprovedNamingStrategy
# stripped before adding them to the entity manager)
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
第四步:编写实体类
在src/main/java下新建entity包,并新建UserInfo类。
package entity;
public class UserInfo {
private int id;
private String name;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
字段要与数据库内容同步,如果不一样,请使用:
@Id声明主键。
@Table(name = "表名")。
@Column(name = "字段名")进行标注。
第五步:编写Dao层接口
在src/main/java下新建dao包,并新建UserDao接口。
package dao;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import entity.UserInfo;
public interface UserDao {
@Select("select * from userinfo where id = #{ID}")
public UserInfo findById(@Param("ID") int id);
}
第六步:编写启动类
在src/main/java下新建contr包,并新建Application启动类。
package contr;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import dao.UserDao;
import entity.UserInfo;
@SpringBootApplication
@RestController
@MapperScan("dao")
public class Application {
@Autowired
UserDao userDao;
@RequestMapping("/hello")
public String hello(){
UserInfo userInfo = userDao.findById(1);
return "hello:" + userInfo.getName();
}
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
最关键的在于要使用@MapperScan("dao")进行扫描。
而不是使用@ComponentScan。
第七步:创建数据库
数据库信息要与application.properties中配置的相同。
数据库名,用户名,密码。
创建userinfo表:
CREATE TABLE `userinfo` (
`name` varchar(255) NOT NULL,
`id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
自己在表里随意添加一条 id=1,name=小明的数据,用于测试。
整体:
最后一步:浏览效果
启动main方法。
在浏览器中输入: localhost:8080/hello 可以看到如下效果: