- 浏览: 3285 次
- 性别:
最新评论
文章列表
eclipse 调试技巧
- 博客分类:
- eclipse
传送门:http://eclipsesource.com/blogs/2013/01/08/effective-java-debugging-with-eclipse/
主要讲了 eclipse 的breakpoints 的使用技巧,虽然很常见,但是不一定每个人都会用。
1. 基本断点
2. 异常断点
3. 条件断点
4. 变量值查看
5. Drop to Frame
6. Inspect and Watch 功能使用
7. 改变变量值
8. 过滤不需要被断点的代码
9. 远程调试
10. heap du ...
eclipse 无法为jdk源码打断点
- 博客分类:
- eclipse
eclipse 版本信息:
eclipse java ee ide for web Developers
verison : kelper service Release 2
build id : 20140224-0627
问题: 无法为jdk源码打断点
错误信息: unable to install breakpoint in xxx due to missing line number attributes.
解决方案: 传送门:http://www.tuicool.com/articles/UjENFrY
eclipse 插件安装以及常见问题解决
- 博客分类:
- eclipse
1. 下载eclipse 下载 ide for javaee developers
下载版本:Kepler Service Release 2
2. 安装svn 在market 下载搜索 subclipse插件
在线安装地址:http://subclipse.tigris.org/update_1.8.x
3. 安装maven 在market 下载搜索 m2e 插件 安装即可
4. 安装 maven 和 svn 配合使用的插件,m2eclipse 在资源库下载 check as maven project
在线安装地址:http: ...
简易的redis windows环境搭建
- 博客分类:
- redis
redis windows 搭建
# 由于redis没有发行windows版本,所以就使用了redis的非official版本,根据自己电脑下载相应的bit版本;下载地址:https://github.com/ServiceStack/redis-windows
#开启服务端,执行redis-server.exe,这样就开启了redis服务端 ,如下图所示:
从dos窗口中可以看出已经服务端启动成功, 端口为6379
# 开启客户端连接服务端进行命令数据存储,执行 redis-cli.exe
就可以连接上已经开启的redis服务端,这样就可以简 ...