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.
21 lines
434 B
21 lines
434 B
server: |
|
port: 8080 |
|
spring: |
|
application: |
|
name: teaching-backend |
|
mvc: |
|
pathmatch: |
|
matching-strategy: ant_path_matcher |
|
datasource: |
|
driver-class-name: com.mysql.cj.jdbc.Driver |
|
url: jdbc:mysql://localhost:3306/teaching_db |
|
username: root |
|
password: root |
|
mybatis: |
|
configuration: |
|
map-underscore-to-camel-case: true |
|
mapper-locations: |
|
- classpath:dao/*.xml |
|
- classpath*:com/**/mapper/*.xml |
|
|
|
|
|
|