`
文章列表

工具类

    博客分类:
  • java
事实上

js规范

(function(e) {    function questions_list() {        this.addId = "";    //添加页页签id    };    questions_list.prototype = {        inital : function inital() {        },        /**         * 添加         */        create : function create(type) {            this.addId = questionsList.randomNum(1 ...
### The error occurred while executing a query### Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failureLast packet sent to the server was 0 ms ago.    a ...
mysql任意数据库中在系统所有表中所有字段查询符合任意字符的存储过程
1、找到my.ini中的innodb_flush_log_at_trx_commit;2、将其值从1修改为0; 3、重启数据库;
1、打开catalina.bat; 2、找到264行 if "%TITLE%" == "" set TITLE=Tomcat,将Tomcat修改为想要的标题即可
修改tomcat启动窗口标题
1.准备工作: 1、下载comet4j.js 2、下载comet4j-tomcat7.jar  这个现在只支持tomcat6和7两个版本  一定要对应上了,我这边测试的  在tomcat8下面是用comet4j-tomcat7.jar这个jar文件也是可以推送的 2.maven配置 因为comet4j-tomcat6.jar这个jar文件在maven远程仓库中不存在,所以需要将jar包放到lib下面,但是maven打包的时候会找不到这个jar文件  所以在pom.xml中加入下面代码即可 <dependency>             <groupId> ...
获取web请求用户的mac
/**     * 获取单元格值信息     *      * @param cell     * @return     * @Description:     */    public static String getCellValue(Cell cell)    {        DecimalFormat df = new DecimalFormat("#");        String cellValue = "";        if (cell == null)        {            return cellValue;  ...
<script async src="//dn-lbstatics.qbox.me/busuanzi/2.3/busuanzi.pure.mini.js"></script>    本站总访问量<span id="busuanzi_value_site_pv"></span>次    本站访客数<span id="busuanzi_value_site_uv"></span>人次    本文总阅读量<span id="busuanzi_value_p ...

java生成随机token

    博客分类:
  • java
package com.cn;import java.security.MessageDigest;import java.security.NoSuchAlgorithmException;import java.util.UUID;import sun.misc.BASE64Encoder;/** *  * 生成随机token *  * @author gaochunhu * @Date: 2017-11-21 上午09:00:16 * @version 3.5 */public class TokenProccessor{        /*     * 单例设计模式(保证类的对象在内存中 ...

axis2实现请求

    博客分类:
  • java
axis2实现请求需要的jar及demo

对Map进行排序

    博客分类:
  • java
/**      * 对数据集Map进行排序      *       * @param map      * @return      * @Description:      */     public Map<String, Integer> sortMapByStringInteger(Map<String, Integer> map)     {         Map<String, Integer> sortedMap = new LinkedHashMap<String, Integer>();         ...

js刷新父窗口

window.parent.parent.frames["mainFrame"].document.location.reload();
Global site tag (gtag.js) - Google Analytics