已采纳回答 / flybetter
<% out.println("var ROOTPATH = '" + request.getContextPath() + "';");%>var URL=ROOTPATH+"/ueditor/";
2016-07-14
最赞回答 / 慕虎1133631
<!--设置静态资源访问 --> <mvc:resources location="WEB-INF/resources/" mapping="/resources/**"/> 我在WEB-INF下新建一个 resources 文件夹 然后将 bootstrap 的运行文件放到resources文件夹下,页面引用就 例如 :页面使用 <!-- jQuery文件。务必在bootstrap.min.js 之前引入 --><script src="../reso...
2016-07-12
最新回答 / 吼吼在幕课
如果是404错误的话, 检查一个controller类里面的 excute方法, @RequestMapping(value = "/{seckillId}/{md5}/execution", method = RequestMethod.POST, produces = {"application/json;charset=UTF-8" }) @ResponseBody public SeckillResult<SeckillExe...
2016-07-11
Could not resolve bean definition resource pattern [classpath:spring/spring-*.xml]
2016-07-10
最赞回答 / 吼吼在幕课
我用的是Eclipse 也遇到了这个问题。 一般传统的web项目都要把jar放到 WEB-INF/lib的目录下面,估计Maven项目也有类似动作。 猜测应该是Maven编译的时候用的到的那些依赖包要通过某种方式放到tomcat里面去 启动的时候DispatchServlet才能加载。 在网上找到下列方法:在eclipse中配置一下:工程上右击 -> Properties -> Deployment Assembly:之后选择 Add -> Java Build Path Entries...
2016-07-04
java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet
2016-07-04