摘要: <!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><style type="text/css">body, html,#allmap {width: 100% 阅读全文
posted @ 2017-08-30 16:56 洞玄巅峰 阅读(600) 评论(0) 推荐(0) 编辑
摘要: Ehcache系列二:Spring缓存注解@Cache使用 Ehcache系列二:Spring缓存注解@Cache使用 标签: CacheableCacheEvictCachePut 2016-06-06 16:37 2235人阅读 评论(0) 收藏 举报 标签: CacheableCacheEvi 阅读全文
posted @ 2017-08-29 14:14 洞玄巅峰 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 一、打开tomcat安装目录下conf/server.xml这个文件在server.xml文档中找到 </Engine></Service> 接着添加上面添加以下内容(暂时先说分为三种方式):第一种:<Host name="www.haokan946.cn" debug="0" appBase="w 阅读全文
posted @ 2017-08-15 17:10 洞玄巅峰 阅读(264) 评论(0) 推荐(0) 编辑
摘要: toolbox : { show : true, feature : { dataView : { optionToContent : function(option) { // 行名称 var axisData = option.xAxis[0].data; // 列名称 var header = 阅读全文
posted @ 2017-08-07 17:41 洞玄巅峰 阅读(892) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-08-07 11:12 洞玄巅峰 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1:Echarts2.0 这种皮肤下柱状图转折线图默认是平滑曲线 默认皮肤为硬折线: 如果需要在2.0的macarons皮肤下使用硬折线需显式设置以下属性: series: [ { name:'最高气温', type:'line', smooth:false, //false为硬折线 true为平滑 阅读全文
posted @ 2017-08-07 11:10 洞玄巅峰 阅读(1385) 评论(0) 推荐(0) 编辑
摘要: 选择项目 自由风格 阅读全文
posted @ 2017-08-01 10:13 洞玄巅峰 阅读(618) 评论(0) 推荐(0) 编辑
摘要: yum install gcc glibc-devel make ncurses-devel openssl-devel xmlto 1.Erlang安装配置 下载安装包,地址http://www.erlang.org/downloads,我选择的是otp_src_18.3.tar.gz。 然后解压 阅读全文
posted @ 2017-07-30 18:44 洞玄巅峰 阅读(297) 评论(0) 推荐(0) 编辑
摘要: create database easyrec; #为easyrec初始化用户名跟密码grant index, create, select, insert, update, drop, delete, alter, lock tables on easyrec.* to 'jinxudong'@' 阅读全文
posted @ 2017-07-29 15:06 洞玄巅峰 阅读(353) 评论(0) 推荐(0) 编辑
摘要: <!-- 配置邮件消息队列监听 --> <bean id="maillistener" class="cn.xdf.wlyy.listener.Maillistener" name="maillistener"> <property name="mailManager" ref="mailManag 阅读全文
posted @ 2017-07-26 11:54 洞玄巅峰 阅读(150) 评论(0) 推荐(0) 编辑
摘要: //单例模式 private static Settings getSettingInstance(){ if(settings==null){ synchronized (Settings.class) { if(settings==null){ settings = ImmutableSetti 阅读全文
posted @ 2017-07-26 11:49 洞玄巅峰 阅读(1797) 评论(0) 推荐(0) 编辑
摘要: $("p:eq(0)") :表p标签的第一个元素 $("p:eq(1)") :表p标签的第二个元素 阅读全文
posted @ 2017-07-26 10:33 洞玄巅峰 阅读(121) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/javachannel/article/details/752437/ 阅读全文
posted @ 2017-07-17 18:05 洞玄巅峰 阅读(97) 评论(0) 推荐(0) 编辑
摘要: package cn.xdf.wlyy.solr.utils; import java.util.ArrayList;import java.util.HashMap;import java.util.List;import java.util.Map;import java.util.Resour 阅读全文
posted @ 2017-07-11 13:15 洞玄巅峰 阅读(1446) 评论(3) 推荐(0) 编辑
摘要: No1. Ubuntu下MySQL 安装 记得root密码别忘了。 No2. 验证Mysql安装 No3. 设置Mysql远程IP访问 /etc/MySQL/my.cnf找到bind-address = 127.0.0.1,注释掉 No4. 设置字符集、排序规则等。 打开/etc/mysql/my. 阅读全文
posted @ 2017-06-23 11:12 洞玄巅峰 阅读(140) 评论(0) 推荐(0) 编辑
摘要: tail -1000 catalina.out | grep Exception 阅读全文
posted @ 2017-06-21 11:21 洞玄巅峰 阅读(122) 评论(0) 推荐(0) 编辑
摘要: DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); try { Date d1 = df.parse("2004-03-26 13:31:40"); Date d2 = df.parse("2004-01-02 11:30:24" 阅读全文
posted @ 2017-06-20 16:37 洞玄巅峰 阅读(465) 评论(0) 推荐(0) 编辑
摘要: main方法中实例化内部类报错: public class TestGson { public static void main(String[] args) { Gson gson=new Gson(); TestGson testgson=new TestGson(); Student stud 阅读全文
posted @ 2017-06-16 14:18 洞玄巅峰 阅读(341) 评论(2) 推荐(0) 编辑
摘要: ps:本文只是简单一个整合介绍,属于抛砖引玉,具体实现还需大家深入研究哈.. 1.首先是生产者配置 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 阅读全文
posted @ 2017-06-13 21:09 洞玄巅峰 阅读(233) 评论(0) 推荐(0) 编辑
摘要: https://geewu.gitbooks.io/rabbitmq-quick/content/RabbitMQ%E5%9F%BA%E7%A1%80%E6%93%8D%E4%BD%9C.html 阅读全文
posted @ 2017-06-13 11:03 洞玄巅峰 阅读(600) 评论(0) 推荐(0) 编辑
摘要: var names = yunying_name.split(","); for (var i = 0; i < names.length; i++) { names[i] = names[i].trim(); } $("#yunying_name").val(names); names=["a", 阅读全文
posted @ 2017-06-13 09:30 洞玄巅峰 阅读(1607) 评论(0) 推荐(0) 编辑
摘要: 添加: PropertiesUtils pro = new PropertiesUtils();String path = pro.load("solr.properties", "solr.Url");SolrServer solrServer = new HttpSolrServer(path) 阅读全文
posted @ 2017-06-07 17:12 洞玄巅峰 阅读(196) 评论(0) 推荐(0) 编辑
摘要: Criteria(条件查询接口) 阅读全文
posted @ 2017-05-29 11:05 洞玄巅峰 阅读(916) 评论(0) 推荐(0) 编辑
摘要: char(10): 换行符 char(13): 回车符 UPDATE tablename SET field = REPLACE(REPLACE(field, CHAR(10), ”), CHAR(13), ”); #mysql 特殊字符转义用\ select id,title from t_abc 阅读全文
posted @ 2017-05-23 14:52 洞玄巅峰 阅读(211) 评论(0) 推荐(0) 编辑
摘要: ResourceBundle resource = ResourceBundle.getBundle("system_config"); try { String a=new String(resource.getString("lybPayAccountName").getBytes("ISO-8 阅读全文
posted @ 2017-05-20 21:49 洞玄巅峰 阅读(240) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" ><ma 阅读全文
posted @ 2017-05-16 09:41 洞玄巅峰 阅读(180) 评论(0) 推荐(0) 编辑
摘要: ElasticSearch同步MySql ElasticSearch同步MySql 标签: elasticsearchmysql 2016-07-01 09:07 4636人阅读 评论(8) 收藏 举报 标签: elasticsearchmysql 2016-07-01 09:07 4636人阅读  阅读全文
posted @ 2017-05-15 14:12 洞玄巅峰 阅读(179) 评论(0) 推荐(0) 编辑
摘要: ElasticSearch Java Api(四) -删除索引 ElasticSearch Java Api(四) -删除索引 标签: elasticsearchjavaapi 2016-06-29 14:11 9737人阅读 评论(1) 收藏 举报 标签: elasticsearchjavaapi 阅读全文
posted @ 2017-05-15 14:11 洞玄巅峰 阅读(710) 评论(0) 推荐(0) 编辑
摘要: ElasticSearch Java Api(三) -更新索引库 ElasticSearch Java Api(三) -更新索引库 标签: elasticsearchupdateesjava-api 2016-06-27 17:12 6794人阅读 评论(0) 收藏 举报 标签: elasticse 阅读全文
posted @ 2017-05-15 14:10 洞玄巅峰 阅读(431) 评论(0) 推荐(0) 编辑
摘要: ElasticSearch Java Api(二) -检索索引库 ElasticSearch Java Api(二) -检索索引库 标签: esindex 2016-06-23 21:40 8386人阅读 评论(29) 收藏 举报 标签: esindex 2016-06-23 21:40 8386人 阅读全文
posted @ 2017-05-15 14:09 洞玄巅峰 阅读(213) 评论(0) 推荐(0) 编辑