ehcache入门基础示例
简单的Java缓存方案 cache2k – High Performance Java Caching
Java连接Oracle数据库的三种连接方式
IntelliJ IDEA的使用
InntelliJ IDEA从接口跳转到Java中的实现类?
在Mac中,它是Apple+ ALT+ B。
在PC中,它是CTRL+ ALT+ B
Java Djb调试
https://teaspoon-consulting.com/articles/tracing-java-method-calls.html
https://stackify.com/java-remote-debugging/
JVM启动时的参数
-Xdebug
-Djava.complier=NONE
-Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5000
jdb -attach localhost:5000 启动调试
classes 查看所有正在运行的类
methods com.eqxiu.Test列出该类下的所有方法
stop in com.eqxiu.Test.m1 设置断点
threads列出所有的线程
thread 0x23b 指定指定的线程
locals 列出方法的参数
dump arg 或者 print arg 可以只看某一个参数
resume 好像是让方法继续执行直到下一个断点
where : The where command shows the current stack trace and allows you to see where you’re at:
step : To step to the next instruction
step up: You can also use the step up command to run the code to the end of the current method, exit it and stop at the next line of the calling method:
set message = “Goodbye, John” 改变变量的值
cont or run : To continue execution, use the cont or the run command:
clear : To see the list of available breakpoints, let’s enter the clear command
clear com.HelloController.hello(java.lang.String) : to clear the breakpoint
Flume1.8安装使用
未完待续
下载
https://flume.apache.org/download.html
使用hdfs sink
先下载hadoop
http://hadoop.apache.org/releases.html
然后将
hadoop-2.6.5/share/下的好多jar包拷贝到flume/lib目录下。
参考错误汇总
https://blog.csdn.net/strongyoung88/article/details/52937835
在Mac上使用iTerm2登录堡垒机2
经过不断的尝试,今天终于成功了。之前还写过一篇相似的博客,内容很繁琐,今天的方法很简单。
a 先安装expect
1 | brew install expect |
b 新建一个文件lg
内容如下,修改相关内容
1 | #!/usr/bin/expect |
c 给文件授权
1 | chmod 777 lg |
d 将文件移动到/usr/local/bin/目录下,然后就可以直接在命令行输入lg登录堡垒机了
其他
如果使用sh lg执行命令的时候,可能会发现expect报错: spawn: command not found
因为这个脚本不是bash脚本。
参考
http://www.tuijiankan.com/2015/05/15/iterm2-mac-ssh-with-no-password/
https://blog.csdn.net/Jerome_s/article/details/77351507
一些Tornado知识
static静态资源
1 | settings = dict( |
假设在服务器上存在/data/static/other/a.txt文件,那么对应的路径url则为http://www.yoursite.com/static/other/a.txt
Tornado模板转义处理
在html页面的最上边加上
1 | {% raw title %} |
就不显示html标签了。
Linux自定义有用的脚本
1 在Linux服务器上启动一个简单的Python服务
python2
1 | nohup python -m SimpleHTTPServer 55555 |
1 | python -m http.server 55555 |
2 从简单Python服务器上下载文件
1 | alias download='a() { wget 21.10.13.14:55555/$1;}; a' |
3 rm -rf,mv 的替换工具 wmv
1 | wget http://47.91.233.243/static/res/wmv && chmod 777 wmv && mv wmv /usr/bin/ |
Linux 向Alias传参数
参考以下代码
在~/.bashrc文件中增加如下行
1 | alias uploadfile='a() { scp $1 root@google.com:/data/resource/;}; a' |
然后使文件生效
1 | source ~/.bashrc |
使用如下代码上传
1 | MacBookPro:Desktop hohode$ uploadfile sms.jpeg |
注意分号,之前因为少了这个分号,困扰了我好久。
Elasticsearch分词疑惑
今天使用must_not进行过滤的时候,发现“五一”关键词过滤不掉,例如标题“五一劳动节放假通知”,后来经过反复的探索,发现是分词器的问题。
1 | GET /_analyze |
分词结果如下:
1 | { |
会把“五一劳动节”当成一个token,而不是“五一”和“劳动节”,所以“五一”关键词就匹配不都了。
使用某个索引
1 | GET _analyze |