javaWEB开发
zsdsywr123
路漫漫其修远兮,吾将上下而求索。
展开
-
java类、jsp和servlet中获取项目的根路径
一、在java类中获取 1.System.getProperty("user.dir") 2.URL res = new TestWebPath().getClass().getClassLoader().getResource(""); String path = res.getPath(); 3.使用spring提供的ClassPathResource类原创 2016-05-31 15:54:39 · 863 阅读 · 0 评论 -
web项目在eclipse中出现红感叹号时候的解决方法
1.打开.classPath文件,去掉无用的jar加载路径,比如 其中某个没有相应jar包的话可以去除 2.右击项目,build path,configure build path,在libraries中remove掉无用有X提示的jar,在order and export中勾选相应jar并且点击OK原创 2016-06-06 02:50:54 · 3473 阅读 · 0 评论