上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 42 下一页

2016年5月1日

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) 编辑

2016年4月30日

java.io.FileNotFoundException: class path resource [META-INF/xfire/services.xml] cannot be opened because it does not exist

摘要: 解决办法: maven创建项目时: META-INF目录下面新建一个xfire文件夹,把services.xml文件放到这个文件夹里,再将整个META-INF拷贝到WEB-INF中 clean一下工程重新加载后启动服务就可以了 阅读全文

posted @ 2016-04-30 20:54 struggle_beiJing 阅读(528) 评论(0) 推荐(0) 编辑

Eclipse+maven发布ee项目jar包未发布

摘要: 背景:在Eclipse中搭建好EE环境后,发布时,出现ClassNotFoundException: XX.XX.ConfigureListener,查看时,对应的jar包都引入了,项目没也没出错,但查看tomcat下时,lib是空的。 1.右键点击项目,选择"Properties" --> "De 阅读全文

posted @ 2016-04-30 20:13 struggle_beiJing 阅读(165) 评论(0) 推荐(0) 编辑

如何用Maven创建web项目(具体步骤)

摘要: http://www.cnblogs.com/leiOOlei/p/3361633.html 阅读全文

posted @ 2016-04-30 10:25 struggle_beiJing 阅读(127) 评论(0) 推荐(0) 编辑

2016年4月27日

jquery的几种异步请求,ajax

摘要: http://blog.csdn.net/a5489888/article/details/8523316 阅读全文

posted @ 2016-04-27 15:57 struggle_beiJing 阅读(172) 评论(0) 推荐(0) 编辑

Javascript异步编程的4种方法

摘要: http://www.ruanyifeng.com/blog/2012/12/asynchronous%EF%BC%BFjavascript.html 阅读全文

posted @ 2016-04-27 15:48 struggle_beiJing 阅读(113) 评论(0) 推荐(0) 编辑

spring 配置触发器 (类似于定时任务)

摘要: 为什么会看这个? 发现项目中有的service中的方法没有地方调用。经查,发现在web.xml中加载的spring的配置文件中配置了这个方法, 经查这种方式是触发器,会定时执行,只需要配置一下。可以设置什么时候执行。 具体配置参考如下: http://blog.csdn.net/liaq325/ar 阅读全文

posted @ 2016-04-27 10:38 struggle_beiJing 阅读(646) 评论(0) 推荐(0) 编辑

上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 42 下一页

导航