摘要:
select b.org_code,b.field_id from T_DIAG_DETAIL_INDEX b where b.org_code is not null and b.field_id is not null; select b.org_code from T_DIAG_DETAIL_ 阅读全文
posted @ 2018-02-06 14:38
丶夜小白
阅读(80)
评论(0)
推荐(0)
摘要:
select a from A a,B b where a.t=b.tselect a from A a where a.t in (select b.t from B b)select distinct a.org_code,a.org_name from t_ORGANZATION a,T_DM 阅读全文
posted @ 2018-02-06 14:37
丶夜小白
阅读(342)
评论(0)
推荐(0)
摘要:
可以实现"同时"执行多个任务的工作,在计算机里没有绝对意义的同时做。线程的工作是并发的创建线程有两种方式:第一种:继承Thread并重写run方法来定义任务由于需要继承Thread,当前类就不能扩展其他类了;由于线程内部重写了run方法,不利于线程重用第二种:使用Runnable接口。定义其实现类。 阅读全文
posted @ 2018-02-06 14:21
丶夜小白
阅读(77)
评论(0)
推荐(0)
摘要:
pwd 当前路径 ps -ef|grep tomcat进程 udo netstat -naop|grep 1111进程查看端口号 sudo lsof -i:1111 端口号查看进程 kill -9 1111 杀死进程 cd ../logs tail -f catalina.out日志 cd weba 阅读全文
posted @ 2018-02-06 14:08
丶夜小白
阅读(61)
评论(0)
推荐(0)