vim /etc/my.cnf +10 i log-bin=mysql-bin binlog-ignore-db=information_schema binlog-ignore-db=mysql binlog-ignore-db=performance_schema server-id= 1 vi ...
分类:
数据库 时间:
2020-03-20 17:16:34
阅读次数:
89
spring boot 项目想要连接hive库的时候 需要导入两个jar包hadoop-common-2.5.1.jar和hive-jdbc-1.2.1 在导入的之后原来的项目启动报错具体如下 org.springframework.beans.factory.UnsatisfiedDependen ...
分类:
编程语言 时间:
2020-03-20 10:54:27
阅读次数:
222
1.使用注解的方式需要配置applicationContext.xml: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http ...
分类:
编程语言 时间:
2020-03-19 23:16:17
阅读次数:
109
在面向对象编程的过程中,要想调用某个类的成员方法,首先要实例化该类的成员变量。 在Spring 中,实例化Bean有三种方式: 1、构造器实例化;2、静态工厂方式实例化;3、实例化工厂方式实例化 构造器实例化:Spring容器通过Bean对应的类中默认的构造器函数实例化Bean. 1-1、创建一个实 ...
分类:
编程语言 时间:
2020-03-19 09:22:55
阅读次数:
80
简单翻译MySQL8.0-INFORMATION_SCHEMA增强的文章 ...
分类:
数据库 时间:
2020-03-18 15:35:40
阅读次数:
71
DelphiXE3新建WebService具体操作:1.打开“DelphiXE3”->“File”->“New”->“Other”2.“New Items”->“Delphi Projects”->“WebSrvice”->“SOAP Server Application”3.“Stand-alon ...
1. applicationContext.xml配置 >此xml命名不可更改 <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="ht ...
分类:
编程语言 时间:
2020-03-18 11:53:11
阅读次数:
78
IF ( SELECT COUNT(*) FROM sys.index_columns INNER JOIN sys.indexes ON indexes.index_id = index_columns.index_id AND indexes.object_id = index_columns. ...
分类:
数据库 时间:
2020-03-18 09:16:58
阅读次数:
83
OPTIMIZE TABLE TableName; -- 优化表碎片(会锁表,数据量大的表执行时间相对较长) show table status from database_test like 'TableName'; -- 查询表状态 SELECT table_schema,TABLE_NAME ...
分类:
数据库 时间:
2020-03-17 11:30:22
阅读次数:
145
拓展方式注入分为两种 分别是: xmlns:p="http://www.springframework.org/schema/p" xmlns:c="http://www.springframework.org/schema/c" 把它们相应的添加到bean.xml文件中 1 package com ...
分类:
编程语言 时间:
2020-03-16 23:57:58
阅读次数:
100