张老师 你还有别的课程么?你讲的特别好,其他你的课程我也想看看,不知道还有哪里能搜到你其他的课程!希望知道的同学可以告知一下,谢谢。
2017-09-12
如果访问地址是http://localhost:8080/seckill/seckill/list
那么将controller类的的@RequestMapping("/seckill") 里的"/seckill"删掉
那么将controller类的的@RequestMapping("/seckill") 里的"/seckill"删掉
2017-09-12
我用的eclipse,花了2天时间搞完了,算是抄出来了,DispatchServlet加载不了这个点我的处理方法是,在pom.xml里面加了一个依赖 <dependency><groupId>org.springframework</groupId><artifactId>spring-webmvc</artifactId><version>4.1.7.RELEASE</version></dependency>
spring-web里面的<property value="/WEB-INF/jsp/" name="prefix"/>我把web-inf删了,不然跳转的地址路径不对
spring-web里面的<property value="/WEB-INF/jsp/" name="prefix"/>我把web-inf删了,不然跳转的地址路径不对
2017-09-10
最新回答 / lily001
问题:Spring4 MVC json问题(406 Not Acceptable)。因为SpringMVC 中使用 @ResponseBody 返回Json时,所以需要手动添加jackson依赖。解决:在pom.xml中添加json依赖<dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> &...
2017-09-10
最新回答 / lisha2019
请求地址不对,正确的应该是:http://localhost:8080/seckill/seckill/1000/detailhttp://主机:端口/工程名/seckill/1000/detail
2017-08-31