摘要:
1.查看总消耗时间最多的前10条SQL语句 select * from (select v.sql_id, v.child_number, v.sql_text, v.elapsed_time, v.cpu_time, v.disk_reads, rank() over(order by v.ela 阅读全文
摘要:
1.右键项目 -->Properties -->Java Bulid Path-> Libraries -->JRE System Library-->Access rules -->双击Type Access Rules在Accessible中添加accessible,下面填上** 点击确定。 2 阅读全文
摘要:
一、所需lib包 二、web.xml配置 三、src/springmvc.xml 配置 四、src/freemarker.properties 配置 五、FreemarkerController.java 代码 六、index.jsp代码 七、webRoot/ftl/hi.ftl 代码:<html> 阅读全文
摘要:
CentOS 7 采用NetworkManager Text User Interface网络编辑组件,即nmtui。 nmtui默认随系统标准安装,如果你使用最小化安装,可能没有该软件,使用下面的命令手动安装: [root@localhost ~]# yum install NetworkMana 阅读全文
摘要:
1、安装数据库 [root@localhost ~]# yum -y install mariadb-server mariadb mariadb-devel 2、启动数据库[root@localhost ~]# systemctl start mariadb[root@localhost ~]# 阅读全文
摘要:
安装tomcat: [root@admin local]# cd /usr/local[root@admin local]# tar -zxv -f apache-tomcat-7.0.29.tar.gz // 解压压缩包 [root@admin local]# rm -rf apache-tomc 阅读全文
摘要:
卸载原系统上的JDK: [root@admin ~]# java -version 查看需要卸载的JDK清单: [root@admin ~]# rpm -qa | grep java java-1.6.0-openjdk-1.6.0.0-1.45.1.11.1.el6.x86_64 卸载OpenJD 阅读全文
摘要:
所需jar 包为icepdf-core.jar、icepdf-extra.jar、icepdf-pro-intl.jar、icepdf-pro.jar和icepdf-viewer.jar。 示例代码如下: 阅读全文
摘要:
1、到官网 https://www.jwplayer.com/ 注册,取得key并下载免费版本(免费版只支持mp4格式); 2、编辑如下网页即可在线播放: 阅读全文
摘要:
select * from (select u.*, array_to_string ( ARRAY ( SELECT role_id FROM k_user_role ur WHERE ur.user_id = u.op_id ),',' ) AS user_role, array_to_stri 阅读全文