schemaLocation添加 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd 引用地址:https://blog.csdn ...
分类:
编程语言 时间:
2020-03-24 01:05:09
阅读次数:
73
web.xml 各版本的 Schema 头部声明 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "htt ...
分类:
Web程序 时间:
2020-03-21 16:22:57
阅读次数:
72
use information_schema; -- 查看 各库 占用 大小 select TABLE_SCHEMA, concat(truncate(sum(data_length)/1024/1024,2),' MB') as data_size, concat(truncate(sum(ind ...
分类:
数据库 时间:
2020-03-21 13:04:23
阅读次数:
105
select table_schema, table_name from information_schema.tables where table_name not in (select distinct table_name from information_schema.columns whe ...
分类:
数据库 时间:
2020-03-20 19:58:30
阅读次数:
263
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
简单翻译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 ...