You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
450 B
20 lines
450 B
spring:
|
|
mvc:
|
|
hiddenmethod:
|
|
filter:
|
|
enabled: true
|
|
datasource:
|
|
url: jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
|
|
username: root
|
|
password: zxcvbnm
|
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
|
|
|
mybatis:
|
|
mapper-locations: classpath:mappers/*.xml
|
|
type-aliases-package: com.blog.demo.Mapper
|
|
configuration:
|
|
map-underscore-to-camel-case: true
|
|
|
|
server:
|
|
port: 8080
|