- 浏览: 215999 次
- 性别:
- 来自: 北京
最新评论
-
whuvr:
import com.capitalbio.soft.core ...
Jedis+SpringDataRedis+Spring -
tianlanxing:
方法 不对 博主赶紧删了
SpringMVC中获取request与response对象 -
xiaoliu128:
汗。写了一大堆,没看出来是怎么数据库配置权限
shiro拦截url动态配置在数据库 -
javajiangyijin:
你好!按照你说的这样,/** 获取HttpServletRes ...
SpringMVC中获取request与response对象 -
虎踞龙盘忆江南:
你有个地方写的有点问题! appPat ...
Web项目的自定义属性配置文件读取- Windows/Linux
文章列表
ed2k://|file|cn_windows_8_1_x64_dvd_2707237.iso|4076017664|839CBE17F3CE8411E8206B92658A91FA|/
ed2k://|file|cn_windows_8_1_x86_dvd_2707405.iso|3055904768|B296A943F16FADFC5FFA2F1D583DCC49|/
ed2k://|file|cn_windows_10_multiple_editions_x64_dvd_6848463.iso|4303300608|94FD861E82458005A9CA8E617379856A|/ ...
MySQL启动多个实例
- 博客分类:
- MySQL
1:
将 原先MySQL的数据文件夹e:\data\复制一份到c:\data\
改写其中的c:\data\my.ini 文件,将port 和 datadir 修改为当前设置,
将c:\data\data下的auto.cnf中的server-uuid改写其中一个字母或数字
2:
在管理员权限下cmd 输入:
sc create MySQL_3307 binpath= "\"D:/Programs/MySQL/Programs/MySQL Server 5.6/bin\mysqld\" --defaults-file=\"C:\Da ...
mmseg4j动态加载词库
- 博客分类:
- solr
1:schema.xml:
<!-- 中文分词mmseg4j -->
<fieldtype name="text_mmseg4j_simple" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<tokenizer class="com.chenlb.mmseg4j.solr.MMSegTokenizerFactory" mode="sim ...
MySQL导入SQL
- 博客分类:
- MySQL
MySQL导入SQL:
只打印警告及错误消息的:
打印到文件的:
mysql -usyswin -psyswin -h172.28.6.151 -P8066 --default-character-set=utf8 < d:/sql/uc.sql >d:/sql/uc.log 2>&1
打印到控制台的:
mysql -usyswin -psyswin -h172.28.6.151 -P8066 --default-character-set=utf8 < d:/sql/uc.sql
或
打印Info级别的:
my ...
package com.alibaba.dubbo.common.utils;
import java.util.LinkedHashMap;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
public class LRUCache<K, V> extends LinkedHashMap<K, V> {
private static final long serialVersionUID = -516763180 ...
mysqlslap位置:D:\Programs\MySQL\Programs\MySQL Server 5.6\bin
1:自定义:mysqlslap.cmd:
mysqlslap.exe -uroot -proot --concurrency=10 --iterations=1 --auto-generate-sql --auto-generate-sql-load-type=mixed --auto-generate-sql-add-autoincrement --engine=innodb --number-of-queries=10 --d ...
1:
注册Controller内的Binder:
@InitBinder
public void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
dateFormat.setLenient(false);
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));// ...
Tomcat JMX 监控
- 博客分类:
- Tomcat
1:
TOMCAT setenv.sh:
set JAVA_OPTS=-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=1011 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Djava.rmi.server.hostname=tech
2:
jconsole:
service:jmx:rmi:///jndi/rmi://172.31.68.40:10 ...
dubbo xsd 验证设置
- 博客分类:
- dubbo
1:
Eclipse > Windows > Preferences > XML > XML Catalog > add->catalog entry ->file system 选择下载好的文件
修改key值和配置文件的http://code.alibabatech.com/schema/dubbo/dubbo.xsd 相同
2:
在dubbo 的配置文件上右键validate
Android ADT 插件安装
- 博客分类:
- Android
1:下载地址:
http://developer.android.com/sdk/installing/installing-adt.html
http://yun.baidu.com/s/1qWFJoF6#path=%252Fandroid%2520adt
https://dl.google.com/android/ADT-23.0.6.zip
2:下载 ADT-23.0.6.zip后解压到 G:\Resources\Android\ADT-23.0.6
3:
Start Eclipse, then select Help > Install New S ...
SolrCloud NRT 近实时搜索
- 博客分类:
- solr
1:
-1代表禁用软提交(以毫秒为单位进行软提交)
<autoSoftCommit>
<maxTime>${solr.autoSoftCommit.maxTime:-1}</maxTime>
</autoSoftCommit>
2:
commitWithin 默认使用软提交, 若为false,则使用硬提交
<commitWithin>
<softCommit>true</softCommit>
</commitWithin>
3:
direc ...
1:分派项目性任务给个人或团队
2:分析项目性设计方案
3:验收阶段性的开发成果
4:联合运维制定部署方案
5:跨机房问题考虑
SolrCloud 动态扩容方案
- 博客分类:
- solr
SolrCloud 动态扩容方案
1:改变id的hash策略
使用 implicit 路由,参加: http://www.cnblogs.com/rcfeng/p/4287031.html
当没有匹配的shards时, 数据将会集中到一个shard
http://172.28.4.83:11010/solr/admin/collections?action=CREATE&name=post&router.name=implicit&shards=shard1,shard2,shard3&replicationFactor=3& ...
SpringAOP简单用例
- 博客分类:
- Spring
1:Spring配置:
<aop:config>
<aop:aspect id="LogAspect" ref="logAspectBean">
<aop:pointcut id="aopService" expression="execution(com.xxx.*.xxx.*.service..*.*(..))" />
<aop:around pointcut-ref="aopServi ...