1.前言
有关于服务器的配置和需要准备的工作,大家可以看了一篇文章SSM项目部署(环境配置+打成WAR包+TOMCAT部署)
这里我直接从springboot项目的打包开始。
2.SpingBoot项目部署
配置文件
application.properties
# 关闭模板引擎的缓存
spring.thymeleaf.cache=false
server.servlet.context-path=/kuang
#我们的配置文件的真实位置
spring.messages.basename=i18n.login
# 时间日期格式化
spring.mvc.format.date=yyyy-MM-dd
spring.datasource.username=root
spring.datasource.password=yl2vXBS%FjGoSfby
spring.datasource.url=jdbc:mysql://39.108.141.143:3306/springboot?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#整合mybatis
mybatis.type-aliases-package=com.kuang.pojo
mybatis.mapper-locations=classpath:mybatis/mapper/*.xml
pom.xml:
<dependencies>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.1</version>