eclipse information center

环境

Eclipse Neon JDK8

搭建 eclipse help server

  • 下载Eclipse Neon
  • 安装Neon 在 D:\test 目录, 会创建 D:\test\eclipse目录,
  • 在D:\test\eclipse\plugins 目录查看 eclipse help base jar 的版本,然后替换下面version, 在cmd窗口里面运行下面命令
       java -classpath D:\test\eclipse\plugins\org.eclipse.help.base_[version].jar org.eclipse.help.standalone.Infocenter -command start -eclipsehome D:\test\eclipse -port 8081 -vmargs -Xms64M -Xmx128M
    
  • 在浏览器访问 http://localhost:8081/help/index.jsp
  • 关闭 help server 执行下面命令
    java -classpath D:\test\eclipse\plugins\org.eclipse.help.base_[version].jar org.eclipse.help.standalone.Infocenter -command shutdown -eclipsehome D:\test\eclipse
    
参考文档
最近的文章

IntelliJ IDEA with JRebel

环境IntelliJ-IDEA 2017.1JRabel IntelliJ-IDEA plugin 7.0.7JDK8IntelliJ IDEA 中 使用JRebel plugin 到 jreble 注册账号, 根据提示得到License code 在 IntelliJ IDEA 安装 JRebel plugin, 用上面的license code激活 在 IntelliJ IDEA settings 里面找到 compiler , enable “Buld project auto...…

继续阅读
更早的文章

ubuntu automatically rotate log file

环境 Ubuntu 14.04查看apache2和tomcat7的自动rotate apache2 和tomcat7 是通过 apt-get install 安装 进入 rotate 的 配置目录 查看apache2 rotate 配置 cd /etc/logrotate.d/vim apache2 logrotate 部分参数 monthly: 日志文件将按月轮循。其它可用值为‘daily’,‘weekly’或者‘yearly’。 rotate 5: 一次将存储...…

继续阅读