java后台
daiyuezai
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
判断应用服务器是jboss或tomcat等
private boolean _detect(String className) { try { ClassLoader systemClassLoader = ClassLoader.getSystemClassLoader(); systemClassLoader.loadClass(className); return true; } catc原创 2012-05-31 17:21:12 · 1369 阅读 · 0 评论 -
test
原创 2017-11-15 15:13:30 · 182 阅读 · 0 评论 -
Callable
takServiceStatus = takService.submit(new Callable() { public Void call() throws Exception { Callable task; try { while (!canceled.get()) { task = takQueue.take(); if (task == endTask) { resultQ原创 2015-03-18 00:31:21 · 317 阅读 · 0 评论 -
MyConcurrService
public class MyConcurrService { public MyConcurrService(CallbackListener resultListener) { this(resultListener, 2, 10, "general"); } public MyConcurrService(CallbackListener resultListener原创 2015-03-18 00:32:00 · 393 阅读 · 0 评论 -
审批流程
项目: 工程处、合同预算处、招标处可以新建 ——> 填报员修改 ——> 项目经理审批 ——> 招标处审批 ——> 合同预算处审批 ——> 工程处审批 ——> 副主任审批 ——> 主任审批 招标管理: 填报员新建 ——> 项目经理审批 ——> 招标处审批 ——> 工程处审批 ——> 合同预算处审批 ——> 副主任审批 ——> 主任审批 合同管理: 填报员新建 ——> 项目原创 2017-11-30 14:45:35 · 1192 阅读 · 0 评论
分享