33 lines
1.0 KiB
Properties
33 lines
1.0 KiB
Properties
# 端口
|
|
server.port = 8080
|
|
# 网站域名
|
|
community.path.domain = http://localhost:8080
|
|
# 项目名 http://localhost:8080/greatecommunity/......
|
|
server.servlet.context-path = /greatecommunity
|
|
|
|
# Thymeleaf
|
|
spring.thymeleaf.cache=false
|
|
|
|
# MySQL
|
|
spring.datasource.url = jdbc:mysql://127.0.0.1:3306/greatecommunity?characterEncoding=utf-8&useSSL=false&serverTimezone=Hongkong
|
|
spring.datasource.username = root
|
|
spring.datasource.password = root
|
|
# Mysql 5.0+ 版本使用 com.mysql.jdbc.Driver
|
|
# 如果是 8.0+ 的版本请改成 com.mysql.cj.jdbc.Driver
|
|
spring.datasource.driver-class-name = com.mysql.jdbc.Driver
|
|
|
|
# Mybatis
|
|
mybatis.mapper-locations = classpath:mapper/*.xml
|
|
mybatis.type-aliases-package = com.greate.community.entity
|
|
mybatis.configuration.useGeneratedKeys = true
|
|
mybatis.configuration.mapUnderscoreToCamelCase = true
|
|
|
|
# Spring Mail
|
|
spring.mail.host = smtp.sina.com
|
|
spring.mail.port = 465
|
|
spring.mail.username = greatetest@sina.com
|
|
spring.mail.password = 88161b147d8eff41
|
|
spring.mail.protocol = smtps
|
|
spring.mail.properties.mail.smtp.ssl.enable = true
|
|
|