java EE
豆豆平沙落雁
这个作者很懒,什么都没留下…
展开
-
java web开发中的三层架构原理图
原创 2013-11-20 21:15:51 · 1455 阅读 · 0 评论 -
注册——登录实战演习 (使用java web应用的三层架构实现)
原创 2013-11-20 21:18:51 · 1611 阅读 · 0 评论 -
仓储系统之入库、出库理解浅谈
入库:相关表原创 2014-10-18 16:49:16 · 16119 阅读 · 2 评论 -
Java读取Properties文件的六种方法
使用J2SE API读取Properties文件的六种方法1。使用java.util.Properties类的load()方法示例: InputStream in = lnew BufferedInputStream(new FileInputStream(name));Properties p = new Properties();p.load(in);2。使用jav转载 2015-10-20 17:50:17 · 488 阅读 · 0 评论 -
线程池ThreadPoolExecutor使用简介
线程池ThreadPoolExecutor使用简介分类: Java一、简介 线程池类为 java.util.concurrent.ThreadPoolExecutor,常用构造方法为: ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeU转载 2016-12-08 16:02:09 · 435 阅读 · 0 评论