首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

Websphere中获取项目上.properties路径

2012-08-30 
Websphere中获取项目下.properties路径一:如果容器为Websphere,那下面为红色的地方不能加/,如果为tomcat

Websphere中获取项目下.properties路径

一:如果容器为Websphere,那下面为红色的地方不能加"/",如果为tomcat,则加上"/",

?

import org.springframework.core.io.Resource;import org.springframework.core.io.ClassPathResource;Resource resource = new ClassPathResource("config.properties");Properties  properties= new Properties();InputStream in = resource.getInputStream();properties.load(in);

??

热点排行