PackageUtil 类 由于我们并不确定jar包生成时采用的哪种方式,如果采用默认生成jar包的方式,那我们通过Thread.currentThread().getContextClassLoader().getResource()是获取不到的,因此增加了从所有jar包中搜索提供的包域名,这样功 ...
分类:
编程语言 时间:
2017-09-28 14:13:25
阅读次数:
458
mac: generatorConfig_vm = MybatisGeneratorUtil.class.getResource(generatorConfig_vm).getPath() windows: generatorConfig_vm = MybatisGeneratorUtil.clas ...
首先分两大类按web容器分类 一种是普通的web项目,像用Tomcat容器,特点是压缩包随着容器的启动会解压缩成一个文件夹,项目访问的时候,实际是去访问文件夹,而不是jar或者war包。 这种的无论你是用获取路径的方法this.getClass().getResource("/")+fileName ...
分类:
Web程序 时间:
2017-09-13 23:12:43
阅读次数:
465
String classpath = this.getClass().getResource("/").getPath().replaceFirst("/WEB-INF/classes/", "").replaceFirst("/", ""); String filePath=classpath+" ...
分类:
编程语言 时间:
2017-09-05 22:07:17
阅读次数:
177
原文链接:http://blog.csdn.net/rchm8519/article/details/48347797 redis.clients.util.Pool.getResource(Pool.Java:50)redis.clients.jedis.JedisPool.getResource ...
分类:
其他好文 时间:
2017-08-19 13:07:32
阅读次数:
306
Tomcat8 启动过程中提示:org.apache.catalina.webresources.Cache.getResource Unable to add the resource at xxx to the cache because there was insufficient free ...
分类:
Web程序 时间:
2017-08-18 09:41:34
阅读次数:
702
myBatis中的注解@Param:http://blog.csdn.net/gao36951/article/details/44258217; http://www.cnblogs.com/thomas12112406/p/6217211.html。 myBatis返回值为Map:http:// ...
分类:
编程语言 时间:
2017-08-15 23:10:02
阅读次数:
220
//生成一个文件对象: File file = new File(getClass().getClassLoader().getResource("test.xml").getPath()); //直接得到一个输入流: InputStream in = getClass().getClassLoad ...
分类:
编程语言 时间:
2017-08-09 21:18:24
阅读次数:
159
通过查看log4j源码,版本1.2.16,log4j包 去默认的位置加载 配置文件; 文件名如下: 加载配置的过程: LogManager 的 static 代码段: Loader.getResource()代码如下,其中getTCL(),获取的是线程上下文类加载器,即{Thread.current ...
分类:
其他好文 时间:
2017-07-31 23:53:06
阅读次数:
339
写了一个web工程,在本地测试正确,但是部署到服务器上就出现错误。原因是读取不到配置文件。 后来从打印出来的文件路径中发现是用Java的class.getResource("/").getPath()获取路径的时候,路径中的空格转换成了%20。 在网上查询相关信息,果然将空格转成%20是一个古老的b ...
分类:
编程语言 时间:
2017-07-29 20:27:01
阅读次数:
231