设置metastore 机器: ke01、ke02、ke03、ke04 ke03 为元数据库 ke01、ke02、ke04 连接到元数据库 、 hive-metastore搭建 ke03: <configuration> <property> <name>hive.metastore.warehou ...
分类:
数据库 时间:
2021-03-12 13:42:56
阅读次数:
0
JavaWeb - SpringBoot 入门 1 SpringBoot 基本应用 1.1 约定优于配置 // 约定优于配置(Convention over Configuration),又称按约定编程,是一种软件设计范式 //本质上是说,系统、类库或框架应该假定合理的默认值,而非要求提供不必要的配 ...
分类:
编程语言 时间:
2021-03-09 12:59:36
阅读次数:
0
记得关闭日志信息 #日志信息#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