application.yml 配置内容
#tomcat config
server :
port : 8080
##项目名字配置
servlet :
context-path : /
tomcat :
uri-encoding : UTF-8
#xx 报错修改的地方
max-connections: 200000
max-http-form-post-size: 9000000
threads:
max: 128
min-spare: 5
仔细发现 ##项目名字配置 和 #xx 报错修改的地方 一个 # 和两个 # 都可以
application.properties 配置内容
##这样才可以
# 这样不可以
spring.datasource.url=jdbc:mysql://localhost:3306/jpa_data?characterencoding=utf8&usessl=false
spring.datasource.username=root
spring.datasource.password=123456
spring.jpa.database=mysql
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=update
spring.thymeleaf.prefix=classpath:/templates/