一.在你建立的工程下創(chuàng)建 Module 選擇Spring initializr創(chuàng)建。
二.在Type處選擇: Maven Project(項(xiàng)目的構(gòu)建工具)
三.創(chuàng)建依賴(lài)時(shí)勾上web,mybatis,mysql(這個(gè)看你個(gè)人需要吧,可以自主選擇)
建立好的項(xiàng)目結(jié)構(gòu)如下:
注意:application.properties和application.yml是同一個(gè)東西,均為項(xiàng)目的核心配置文件
內(nèi)容如下:
#連接數(shù)據(jù)庫(kù)
spring.datasource.url=jdbc:mysql://localhost:3306/smbms
spring.datasource.username=root
spring.datasource.password=1234
spring.datasource.driverClassName=com.mysql.jdbc.Driver
#引入mybatis的配置文件
mybatis:
mybatis.mapper-locations=classpath:mapper/*.xml
mybatis.type-aliases-package=com.example.sprboot.pojo
相應(yīng)的pom.xml文件
<?xml version="1.0" encoding="UTF-8"?>
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0
com.example
springboot
0.0.1-SNAPSHOT
jar
springboot
Demo project for Spring Boot
org.springframework.boot
spring-boot-starter-parent
2.0.5.RELEASE
UTF-8
UTF-8
1.8
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-test
test
org.mybatis.spring.boot
mybatis-spring-boot-starter
1.3.0
mysql
mysql-connector-java
com.alibaba
fastjson
1.2.49
org.springframework.boot
spring-boot-starter-thymeleaf
org.springframework.boot
spring-boot-maven-plugin
相應(yīng)的接口UserMapper如下:
@Repository
public interface UserMapper {
ListgetList();
}
service如下:
public interface UserService {
ListgetList();
}
impl如下:
@Service
public class UserServiceImpl implements UserService {@Resource
br/>@Resource
br/>@Override
getList() {
return userMapper.getList();
}
}
在resources中建一個(gè)文件夾mapper里面放mapper.xml文件,代碼如下:
工號(hào) 用戶名 姓名 性別 生日 電話 地址 創(chuàng)建時(shí)間
此處有一個(gè)th標(biāo)簽,需要引入一個(gè)
并在pom.xml中引入對(duì)應(yīng)的jar包(html中不能使用jstl表達(dá)式)
大家可以擴(kuò)展一下thymeleaf的知識(shí)
控制器代碼如下:
@Controller
public class UserController {@Resource
br/>@Resource
br/>@RequestMapping("/")
Listlist=userService.getList();
model.addAttribute("users",list);
System.out.println(list);
return "/index.html";
}
}
注:在調(diào)通的時(shí)候,可能會(huì)報(bào)很多的錯(cuò),基本上都是注解的使用出錯(cuò),希望各位能夠細(xì)心點(diǎn)
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性?xún)r(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。