@JFinal 你好,想跟你请教个问题:
是这样的,最近在用Jfinal框架搭建一个小Blog,发布到SAE上测试,报500错误,错误定位在JfinalFilter.class中68行,网上说要*掉这两行代码才行,于是着手更改Jfinal Jar包,现在把Jfinal1.8-bin-scr.jar解压出来,导入Java项目,排除了一些红叉叉,但还有一行出错误:
SpringPlugin.java
public boolean start() {
if (ctx != null)
IocInterceptor.ctx = ctx;
else if (configurations != null)
//这句报错:The type org.springframework.beans.BeansException cannot be resolved. It is indirectly referenced from required .class files,请问这是少了哪个Jar包?项目目前已包含org.springframework.context-3.0.7.RELEASE.jar
IocInterceptor.ctx = new FileSystemXmlApplicationContext(configurations);
else
IocInterceptor.ctx = new FileSystemXmlApplicationContext(PathKit.getWebRootPath() + "/WEB-INF/applicationContext.xml");
return true;
}
<spanstyle="font-size:13.6000003814697px;line-height:16.3199996948242px;"> 少了spring的几个jar包,直接删除com.jfinal.plugin.spring这个目录即可打完收工。如果不想删掉,可以去<atarget="_blank"rel="nofollow">http://www.jfinal.com 下载一个jfinal-1.9-all.zip里面有个jfinal-lib/spring目录,添加这里面的jar包也可打完收工。哥你喜欢说打完收工哈哈
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。