<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:mvc="http://www.springframework.org/schema/mvc" ...
分类:
编程语言 时间:
2020-07-12 20:48:22
阅读次数:
77
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance ...
分类:
其他好文 时间:
2020-07-12 14:11:37
阅读次数:
80
最新web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-insta ...
分类:
Web程序 时间:
2020-07-11 13:10:09
阅读次数:
96
查看是否有锁现象 ## 1. 看有没有锁等待 SHOW STATUS LIKE 'innodb_row_lock%'; ## 2. 查看哪个事务在等待(被阻塞了) USE information_schema SELECT * FROM information_schema.INNODB_TRX W ...
分类:
数据库 时间:
2020-07-10 20:42:20
阅读次数:
87
select TABLE_SCHEMA , TABLE_NAME from information_schema.TABLES where table_type='view' and TABLE_SCHEMA ='yw_plm'; 【说明】 yw_plm是你的数据库名称; view说明是要查看所有的 ...
分类:
数据库 时间:
2020-07-10 00:45:29
阅读次数:
166
Spring配置文件加载spring.xml<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="htt
分类:
编程语言 时间:
2020-07-09 17:51:39
阅读次数:
74
在这种情况下,切面由常规类以及基于 XML 的配置实现。 ...
分类:
其他好文 时间:
2020-07-09 15:07:23
阅读次数:
59
一、information_schema简介在MySQL中,把 information_schema 看作是一个数据库,确切说是信息数据库。其中保存着关于MySQL服务器所维护的所有其他数据库的信息。如数据库名,数据库的表,表栏的数据类型与访问权 限等。在INFORMATION_SCHEMA中,有数 ...
分类:
数据库 时间:
2020-07-09 12:25:36
阅读次数:
70
从zabbix3.X开始 php必须5.4.x以上 系统7系列5.4.16 系统6系列5.3.x (1)安装相关依赖包 yum -y install gcc gcc-c++ httpd mariadb mariadb-server php php-devel php-mysql pcre-devel ...
分类:
其他好文 时间:
2020-07-08 12:55:55
阅读次数:
56
在Spring Boot中使用Servlet,根据Servlet注册方式的不同,有两种使用方式。若使用的是Servlet3.0+版本,则两种方式均可使用;若使用的是Servlet2.5版本,则只能使用配置类方式 一、Servlet3.0+版本方式 (1)创建工程07-servlet (2)导入依赖 ...
分类:
编程语言 时间:
2020-07-07 17:40:29
阅读次数:
67