server:
port: 9090
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/meetin_scheduling?useSSL=true&useUnicode=true&characterEncoding=UTF-8
username: root
password: 1234
mvc:
# static-path-pattern: /hspres/** #修改静态资源访问的路径/前缀
hiddenmethod:
filter:
enabled: true #启用了HiddenHttpMethodFilter,开启页面表单的Rest功能
view: #配置视图解析器
suffix: .html
web:
resources:
#修改/指定 静态资源的访问路径/位置
#
static-locations: ["classpath:/hspimg/","classpath:/META-INF/resources/",
"classpath:/resources/", "classpath:/static/", "classpath:/public/"]
mybatis:
#指定要扫描的 Xxxmapper.xml
mapper-locations: classpath:mapper/*.xml
#通过config-location 可以指定mybatis-config.xml,可以以传统的方式来配置mybatis
#config-location:
# config-location: classpath:mybatis-config.xml
#我们也可以直接在application.yml进行配置
#举例说明1. 比如配置原来的 typeAliases
#举例说明2 配置输出底层的原生sql
#还有很多其它的配置,我们使用到再说
type-aliases-package: com.hspedu.springboot.mybatis.bean
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
#老师说明: 配置mybatis的两种方式的选择: 如果配置比较简单,就直接在application.yml配置即可
#如果配置内容比较多,可以考虑单独的做一个mybatis-config.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<!--配置MyBatis自带的日志输出-查看原生的sql-->
<settings>
<setting name="logImpl" value="STDOUT_LOGGING"/>
</settings>
<!--
1. 如果一个包下有很多的类,我们可以直接引入包
2. 这样该包下面的所有类名,可以直接使用
-->
<typeAliases>
<package name="com.hspedu.springboot.mybatis.bean"/>
</typeAliases>
</configuration>
标签:xml,配置文件,配置,classpath,location,mybatis,config From: https://www.cnblogs.com/lz2z/p/18329287