404错误
能访问到index.jsp,但是访问不到list.jsp,配置没问题
能访问到index.jsp,但是访问不到list.jsp,配置没问题
2016-05-30
我用的Eclipse,和老师用的IDEA不一样,项目跑起来的路径是:http://localhost:8080/Seckill/
http://localhost:8080/Seckill/seckill/list 就是列表页。
http://localhost:8080/Seckill/seckill/1000/detail 就是详情页。
不过我列表页到详情页的Link是这样写的:<a class="btn btn-info" href="${sk.seckillId}/detail" target="_blank">Link</a>
不管使用myeclipse,还是eclipse,如果要达到老师访问路劲的地址,只需要修改context root路径即可,
具体修改点击项目,单机右键选择【propertise】-选择【web project setting】修改context root,默认就是项目路径,你就可以直接修改成 / ,就可以达到用http://localhost:8080/seckill/list 直接访问项目了
举报