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