2016年5月1日

Spring加载resource时classpath*:与classpath:的区别

摘要: http://blog.csdn.net/kkdelta/article/details/5507799 阅读全文

posted @ 2016-05-01 01:57 struggle_beiJing 阅读(141) 评论(0) 推荐(0) 编辑

浅析JAVA_HOME,CLASSPATH和PATH的作用

摘要: http://www.jb51.net/article/39894.htm 阅读全文

posted @ 2016-05-01 01:23 struggle_beiJing 阅读(121) 评论(0) 推荐(0) 编辑

web.xml 配置中classpath: 与classpath*:的区别

摘要: 简单理解,classpath就是代表 /WEB-INF /classes/ 这个路径(如果不理解该路径,就把一个web工程发布为war包,然后用winrar查看其包内路径就理解啦) 常用的场景: 在SSH架构中,配置Spring的上下文环境: <!-- Spring Configures --> < 阅读全文

posted @ 2016-05-01 00:29 struggle_beiJing 阅读(335) 评论(0) 推荐(0) 编辑

java.io.FileNotFoundException: class path resource [bean/test/User.hbm.xml] cannot be opened because it does not exist

摘要: 确定下 WEB-INF/classes下有没有,不是src下哦 工程的src下创建后,会发布到tomcat下项目下的classes中 阅读全文

posted @ 2016-05-01 00:27 struggle_beiJing 阅读(352) 评论(0) 推荐(0) 编辑

maven项目,去除jar包中的不想要的依赖关系(Document root element "beans", must match DOCTYPE root "null". )

摘要: maven dependencies中并不会删除 以下方法maven dependencies中并不会删除,可能程序引入的时候,会去掉这种依赖(猜的) 解释: 就是说项目中要用到某一个a.jar包,通过maven引入了之后,也自动的导入了该jar包所依赖的包,这里就会存在一个问题, 如果a.jar包 阅读全文

posted @ 2016-05-01 00:20 struggle_beiJing 阅读(6428) 评论(0) 推荐(0) 编辑

(Spring加载xml时)org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'beans'.

摘要: ApplicationContext ctx = new ClassPathXmlApplicationContext("test.xml");报错 在启动Spring时,报以下错误,如图: 原因是在xml中spring的xsd的版本配置的不一致,我使用的是spring-2.5.6,但配置文件中配的 阅读全文

posted @ 2016-05-01 00:15 struggle_beiJing 阅读(1720) 评论(0) 推荐(0) 编辑

导航