application.yml配置mybatis
时间: 2023-04-25 21:05:09 浏览: 951
Mybatis 配置可以在 application.yml 文件中进行。下面是一个示例配置:
```
mybatis:
config-location: classpath:mybatis/mybatis-config.xml
mapper-locations: classpath:mybatis/mapper/*.xml
type-aliases-package: com.example.domain
```
- `config-location`: Mybatis 配置文件的位置。
- `mapper-locations`: Mybatis 映射文件的位置。
- `type-aliases-package`: Mybatis 类型别名的包路径。
在上面的示例配置中,Mybatis 配置文件位于 classpath 下的 mybatis 目录中,名称为 mybatis-config.xml。Mybatis 映射文件位于 classpath 下的 mybatis/mapper 目录中,所有以 .xml 结尾的文件都会被加载。Mybatis 类型别名位于 com.example.domain 包中。
相关问题
application.yml 配置mybatis sql连接超时时间
在 application.yml 文件中,可以通过以下方式配置 MyBatis 的 SQL 连接超时时间:
```
spring:
datasource:
url: jdbc:mysql://localhost:3306/mydb?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&failOverReadOnly=false&maxReconnects=10
username: root
password: 123456
driver-class-name: com.mysql.jdbc.Driver
validation-query: SELECT 1 FROM DUAL
validation-interval: 30000
test-on-borrow: true
test-while-idle: true
time-between-eviction-runs-millis: 60000
min-evictable-idle-time-millis: 1800000
max-active: 100
max-idle: 30
max-wait: 5000
initial-size: 5
remove-abandoned: true
remove-abandoned-timeout: 180
log-abandoned: true
pool-prepared-statements: true
max-open-prepared-statements: 50
filters: stat,wall
connection-properties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
```
其中,最关键的配置项是 `max-wait`,它表示连接池中获取连接的最大等待时间,单位为毫秒。如果连接池已经没有可用连接,且等待时间超过了 `max-wait` 的值,就会抛出异常。
一般来说,建议将 `max-wait` 的值设置为 5000-10000 毫秒,即 5-10 秒钟。如果服务器的网络环境比较稳定,可以适当缩短等待时间,反之则应该增加等待时间来避免连接超时。
application.yml配置tkmybatis
在Spring Boot项目中使用tk.mybatis时,需要在application.yml中配置相关信息。
示例配置:
```yaml
mybatis:
mapper-locations: classpath:mapper/*.xml # mapper文件路径
configuration:
map-underscore-to-camel-case: true # 下划线转驼峰
# tk.mybatis配置
mapper:
mappers:
- tk.mybatis.mapper.common.Mapper # 通用Mapper
not-empty: true # insert语句不插入null值
identity: MYSQL # 主键自增类型
```
说明:
- `mybatis.mapper-locations`:mapper文件路径,可以使用通配符,例如`classpath:mapper/**/*.xml`。
- `mybatis.configuration.map-underscore-to-camel-case`:是否开启下划线转驼峰功能。
- `mybatis.mapper.mappers`:需要使用的通用Mapper接口,可以配置多个。
- `mybatis.mapper.not-empty`:insert语句是否插入null值。
- `mybatis.mapper.identity`:主键自增类型,可选值为`MYSQL`、`ORACLE`等。
注意:
- 在使用tk.mybatis时,需要在mapper接口上加上`@Mapper`注解。
- 在mapper.xml文件中,需要使用`tk.mybatis.mapper.common.Mapper`接口中的方法,例如`insertSelective`、`selectByPrimaryKey`等。
阅读全文