Java
文章平均质量分 61
Sunc23
这个作者很懒,什么都没留下…
展开
-
基于SMB协议共享文件及文件夹的复制
package connect;import java.io.File;import java.io.FileOutputStream;import java.net.MalformedURLException;import jcifs.smb.SmbFile;import jcifs.smb.SmbFileInputStream;public cl原创 2014-11-24 15:24:36 · 2074 阅读 · 0 评论 -
JSTL标签 参考手册
前言=========================================================================JSTL标签库,是日常开发经常使用的,也是众多标签中性能最好的。把常用的内容,放在这里备份一份,随用随查。尽量做到不用查,就可以随手就可以写出来。这算是Java程序员的基本功吧,一定要扎实。 JSTL全名为JavaServer Pag转载 2014-12-22 14:16:42 · 466 阅读 · 0 评论 -
servlet中 HTTP method GET is not supported by this URL解决方法
练习servlet,type Status reportmessage HTTP method GET is not supported by this URLdescription The request sent by the client was syntactically incorrect (HTTP method GET is not supported by this原创 2014-11-05 11:22:28 · 2683 阅读 · 0 评论 -
Spring动态创建bean切换数据源
应用场景:查询业务为主,多个数据源,根据不同的请求,切换到不同的数据源; 1:创建DynamicDataSource扩展一个Spring提供的AbstractRoutingDataSource,Override 其中的 determineCurrentLookupKey方法实现数据源的路由[java] view plain copy转载 2016-03-22 14:21:43 · 1720 阅读 · 0 评论