上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 33 下一页
摘要: tomcat重启步骤1.切换到tomcat目录cd /home/tomcat-home/tomcat-erp/bin2.关闭tomcatsh shutdown.sh3.启动tomcatsh startup.sh4.查看tomcat进程ps -ef |grep tomcat5、打开另外服务器连接窗口5 阅读全文
posted @ 2017-06-25 20:11 N神3 阅读(1728) 评论(0) 推荐(0) 编辑
摘要: 正确停止java线程,使用退出标志。 join 让其它进程等待,调用join线程执行完毕,其它线程才开始执行。 阅读全文
posted @ 2017-06-25 17:09 N神3 阅读(160) 评论(0) 推荐(0) 编辑
摘要: AOP是OOP的延续,是Aspect Oriented Programming的缩写,意思是面向切面编程。可以通过预编译方式和运行期动态代理实现在不修改源代码的情况下给程序动态统一添加功能的一种技术。AOP实际是GoF设计模式的延续,设计模式孜孜不倦追求的是调用者和被调用者之间的解耦,AOP可以说也 阅读全文
posted @ 2017-06-24 08:45 N神3 阅读(223) 评论(0) 推荐(0) 编辑
摘要: Project Structure -> Modules -> Web (Module使用web技术) 阅读全文
posted @ 2017-06-24 00:20 N神3 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 从SVN下载代码到hudson服务器本地 -> 将SVN下载的源代码,利用maven【maven依赖pom.xml】或者ant【ant依赖build.xml】打包(war包),pom.xml和build.xml从SVN下载的,需要在hudson配置,从而利用起来。-> 将war包发送到web服务器, 阅读全文
posted @ 2017-06-19 23:41 N神3 阅读(238) 评论(0) 推荐(0) 编辑
摘要: mvn dependency:resolve #查看间接依赖架包,将其转成直接依赖。mvn dependency:tree 阅读全文
posted @ 2017-06-18 18:28 N神3 阅读(126) 评论(0) 推荐(0) 编辑
摘要: webApp //项目名称 -META-INF --MANIFEST.MF -WEB-INF --classes //编译class文件 --lib //依赖jar --web.xml -index.jsp //首页 阅读全文
posted @ 2017-06-18 18:27 N神3 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 最常用快捷键 ctrl + alt + B //查找接口的实现类 ctrl + N //查找类 ctrl + shift + N //查找文件(js、css) ctrl + alt + L //格式化代码 (格式化代码:在菜单栏中点击【Code】>【Reformat Code】) ctrl + +s 阅读全文
posted @ 2017-06-18 15:10 N神3 阅读(407) 评论(0) 推荐(0) 编辑
摘要: UserTask ScriptTask ServiceTask MailTask ManualTask ReceiveTask BusinessRuleTask callActivity 阅读全文
posted @ 2017-06-14 22:31 N神3 阅读(153) 评论(0) 推荐(0) 编辑
摘要: public static void mian(String args[]){ ProcessEngine processEngine = ProcessEngine.getDefaultProcessEngine(); RuntimeService runtimeService = process 阅读全文
posted @ 2017-06-11 21:49 N神3 阅读(1107) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 33 下一页