上一页 1 ··· 4 5 6 7 8
摘要: 简介 开始学es,我习惯边学边记,总结出现的问题和解决方法。本文是在两台Linux虚拟机下,安装了三个节点。本次搭建es同时实践了两种模式——单机模式和分布式模式。条件允许的话,可以在多台机器上配置es节点,如果你机器性能有限,那么可以在一台虚拟机上完成多节点的配置。 如图,是本次3个节点的分布。 阅读全文
posted @ 2017-03-10 17:18 洞玄巅峰 阅读(502) 评论(0) 推荐(0) 编辑
摘要: William 45550-12042010 00001SzFN0n1bPII7FnAxnt0DDOPJA INauvJkeVJBuE5bqLEznccE4tet6tr RiyoMxDK8oDY93tx!ipPyGmqYYeWxS 阅读全文
posted @ 2017-03-10 10:57 洞玄巅峰 阅读(1919) 评论(0) 推荐(0) 编辑
摘要: 多文件上传 public static List<String> imageUpload(String filename, HttpServletRequest request, HttpServletResponse response) throws Exception { CommonsMult 阅读全文
posted @ 2017-03-06 17:55 洞玄巅峰 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 1:多对一配置 private Set<DrawRecordModel> cjrecordsSet = new HashSet<DrawRecordModel>(); 正确 private HashSet<DrawRecordModel> cjrecordsSet = new HashSet<Dra 阅读全文
posted @ 2017-02-24 13:14 洞玄巅峰 阅读(113) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/wang379275614/article/details/47778201 阅读全文
posted @ 2017-02-20 16:45 洞玄巅峰 阅读(95) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-02-20 10:03 洞玄巅峰 阅读(13) 评论(0) 推荐(0) 编辑
摘要: <!-- 上传的文件的限制 --> <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <property name="maxUploadSi 阅读全文
posted @ 2017-02-13 11:44 洞玄巅峰 阅读(262) 评论(0) 推荐(0) 编辑
摘要: <!-- 启动触发器的配置开始 --> <bean name="startQuertz" lazy-init="false" autowire="no" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> <prop 阅读全文
posted @ 2017-02-13 11:40 洞玄巅峰 阅读(777) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="utf-8"?><ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ehcache.xsd"> <dis 阅读全文
posted @ 2017-02-13 11:33 洞玄巅峰 阅读(342) 评论(1) 推荐(0) 编辑
摘要: Calendar calendar=Calendar.getInstance(); //上一年的今天 calendar.add(Calendar.YEAR,-1); System.out.println(calendar.getTime()); //上一年上一月 calendar.add(Calen 阅读全文
posted @ 2017-02-13 10:49 洞玄巅峰 阅读(200) 评论(0) 推荐(0) 编辑
摘要: hibernate 纯sql查询返回结果集(未关联映射)组装VO的问题//须保证别名字段与Vo字段一致 //引号中为vo对象属性需与sql查询返回字段一致.addScalar("chname").setResultTransformer(Transformers.aliasToBean(Vo.cla 阅读全文
posted @ 2017-02-13 10:29 洞玄巅峰 阅读(2452) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8