记得关闭日志信息 #日志信息#mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl <?xml version="1.0" encoding="UTF-8"?><configuration sc ...
分类:
编程语言 时间:
2021-03-08 13:05:41
阅读次数:
0
代码模板: Settings > Editor > File and Code Templates > Files1.例如mybatis的主配置文件 <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-// ...
分类:
其他好文 时间:
2021-03-06 15:05:52
阅读次数:
0
三、配置解析 MyBatis 的配置文件包含了会深深影响 MyBatis 行为的设置和属性信息。 配置文档的顶层结构如下: configuration(配置) properties(属性) settings(设置) typeAliases(类型别名) typeHandlers(类型处理器) obje ...
分类:
其他好文 时间:
2021-03-02 12:38:22
阅读次数:
0
1)注册分页插件(@Configuration) @Bean public PaginationInterceptor paginationInterceptor() { return new PaginationInterceptor(); } 2) 使用 @Test void testPage( ...
分类:
其他好文 时间:
2021-03-01 14:15:10
阅读次数:
0
linux crontab报以下错误解决 [root@china ~]# crontab -l 拒绝权限You (root) are not allowed to access to (crontab) because of pam configuration. 解决: 1.查看定时任务的日志/va ...
分类:
数据库 时间:
2021-02-27 13:40:22
阅读次数:
0
This article explores the configuration of Windows failover clusters, storage controllers, and quorum configurations for SQL Server Always On Availabi ...
分类:
数据库 时间:
2021-02-27 13:30:23
阅读次数:
0
注解驱动开发P2——@Configuration 学习地址:https://www.bilibili.com/video/BV1gW411W7wy?p=2 引用 spring4.0之二:@Configuration的使用 @Configuration定义配置类,类内部包含有一个或多个被@Bean注解 ...
分类:
其他好文 时间:
2021-02-25 11:56:11
阅读次数:
0
1、配置编写的Bean组件添加到容器中。 方法:先准备两个JavaBean,在方法上标注@Bean注解即可(默认单实例组件)。在启动程序中打印IOC容器所有的组件名称,可以在控制台查看结果 2、本身配置类也是IOC容器中的组件,默认也是单实例。 配置在@Configuration(proxyBean ...
分类:
编程语言 时间:
2021-02-25 11:55:08
阅读次数:
0
Kotlin使用挂起函数为异步操作,使用kotlinx.coroutines中的launch、async 1. 第?个协程程序 import kotlinx.coroutines.* fun main() { GlobalScope.launch { // 在后台启动?个新的协程并继续 delay( ...
分类:
其他好文 时间:
2021-02-23 14:13:17
阅读次数:
0
Spring Boot默认上传的单个文件大小1MB,一次上传的总文件大小为10MB。 单个文件上传使用MultipartFile参数来接收文件,多文件使用MultipartFile[]数组来接收,然后遍历它,当成单文件来处理。 问题一:如何配置上传文件大小限制? @Configuration pub ...
分类:
编程语言 时间:
2021-02-23 14:08:56
阅读次数:
0