运行访问list页面出现404错误

访问http://localhost:8080/seckill/list出现错误,不是视频中的那个:
http://img.mukewang.com/583d54a000015b8004500172.jpg

这里说明这个路径错了,对spring mvc不太熟,不知道错哪儿了。配置如下:

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
    <property name="prefix" value="/WEB-INF/jsp/"/>
    <property name="suffix" value=".jsp"/>
</bean>

Controller:

@Controller
@RequestMapping("/seckill")
public class SeckillController {

    private final Logger logger = LoggerFactory.getLogger(this.getClass());

    @Autowired
    private SeckillService seckillService;

    @RequestMapping(name = "/list", method = RequestMethod.GET)
    public String list(Model model) {
        List<Seckill> list = seckillService.getSeckillList();
        model.addAttribute("list", list);
        return "list";
    }
    .....
}


jason_0133
浏览 1093回答 2
2回答

我的南方

把你的项目名字加上,你这样肯定访问不到啊

_潇潇暮雨

断点可以进来list那个方法么
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java