SpringMVC+Spring+mybatis 項目實踐

ssm+spring+mybatis實戰

小組成員:html

龍繼平201731062131java

王陽:201731041215mysql

一、我採用springboot作項目。由於springboot繼承ssm。更加容易,不容易出現配置問題。git

二、在idea中新建一個springboot項目。github

三、application.properties中配置環境。spring

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
server.port=8080
spring.datasource.url=jdbc:mysql://localhost:3306/javaee?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#配置視圖解析
spring.mvc.view.prefix=/templates/
spring.mvc.view.suffix=.html
server.error.path=/error.html
#啓用緩存
spring.thymeleaf.cache=true
#開啓熱部署
spring.devtools.restart.enabled=true
#監聽目錄
spring.devtools.restart.additional-paths=src/main/java
#配置mybatis
mybatis.mapper-locations=classpath:Mybatis/mapper/*.xml
mybatis.config-location=classpath:Mybatis/Mybatis-config.xml
mybatis.type-aliases-package=com.example.demo.entity

 四、在啓動類上面配置mybatis的mapper掃描。和過濾器掃描sql

 

 

五、對代碼進行修改。改bug。緩存

六、因爲咱們小組原來項目就是採用的springboot整合ssm開發的,整合過程我就不詳細寫了。開發過程見如下博文springboot

http://www.javashuo.com/article/p-oxujwhpj-mx.htmlmybatis

http://www.javashuo.com/article/p-gkqdrsts-mx.html

http://www.javashuo.com/article/p-kygrvshf-mx.html

 七、github地址:

https://github.com/JPL1988/demo

相關文章
相關標籤/搜索