摘要: springboot application.properties配置大全 官方文档 https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html 官方原文 参考网上 阅读全文
posted @ 2019-03-28 13:40 zincredible 阅读(1012) 评论(1) 推荐(1) 编辑
摘要: 详见org.apache.tomcat.jdbc.pool.PoolProperties源码源码 官方文档http://tomcat.apache.org/tomcat-8.5-doc/jdbc-pool.html 原文 http://liuxing.info/2016/01/05/Tomcat-J 阅读全文
posted @ 2019-03-28 11:13 zincredible 阅读(542) 评论(0) 推荐(0) 编辑
摘要: @Data @AllArgsConstructor @NoArgsConstructor public class Apple { private int wight; } 排序 List<Integer> numList = new ArrayList<>(Arrays.asList(10, 50 阅读全文
posted @ 2019-03-22 11:39 zincredible 阅读(1143) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <meta charset="UTF-8" /> <head> <title>带有省略号的分页</title> <script src="http://libs.baidu.com/jquery/1.10.1/jquery.min.js"></scrip 阅读全文
posted @ 2019-02-17 09:16 zincredible 阅读(4731) 评论(2) 推荐(0) 编辑
摘要: $(document).on("click", ".navbar-nav li[link]", function() { nav.find('li').removeClass('active'); $(this).addClass('active'); //获取模块到顶部的距离 var id = $ 阅读全文
posted @ 2019-01-31 15:53 zincredible 阅读(1140) 评论(0) 推荐(0) 编辑
摘要: 转载自 https://www.zhihu.com/question/29836842#answer-13737722 并发编程网 - ifeve.com 强烈推荐 ImportNew - 专注Java & Android 技术分享 内容也挺不错InfoQ - 促进软件开发领域知识与创新的传播开源中 阅读全文
posted @ 2019-01-21 22:06 zincredible 阅读(492) 评论(0) 推荐(0) 编辑
摘要: 转载自 https://www.cnblogs.com/geek6/p/3951677.html 一、设计模式的分类 总体来说设计模式分为三大类: 创建型模式,共五种:工厂方法模式、抽象工厂模式、单例模式、建造者模式、原型模式。 结构型模式,共七种:适配器模式、装饰器模式、代理模式、外观模式、桥接模 阅读全文
posted @ 2019-01-21 21:35 zincredible 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1.安装erlang 下载地址:http://www.erlang.org/downloads 设置ERLANG环境变量 2.安装RabbitMQ 下载地址: http://www.rabbitmq.com/download.html 输入命令安装各种管理插件: D:\RabbitMQServer\ 阅读全文
posted @ 2019-01-10 13:35 zincredible 阅读(10712) 评论(2) 推荐(0) 编辑
摘要: JavaScript中的this是指包含它(this)的函数作为方法被调用时所属于的对象 例如 全局函数默认是window对象 ,如果有一个全局函数 function checkResult(){ this } checkResult(); 此时this就指window对象,alert,consol 阅读全文
posted @ 2019-01-08 11:29 zincredible 阅读(161) 评论(0) 推荐(0) 编辑
摘要: springboot版本1.5.10 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.10.RELEASE</v 阅读全文
posted @ 2019-01-08 11:08 zincredible 阅读(8592) 评论(2) 推荐(0) 编辑