在Spring中与PathVariable一起使用时不加载CSS

时间:2017-11-22 16:12:09

标签: java html css spring

我在使用Spring时遇到CSS加载问题。请在下面找到代码。

@RequestMapping(value = "/view/{id}" , method = RequestMethod.GET)
    public ModelAndView viewStudentById(@PathVariable("id") int id) {
        ModelAndView model = new ModelAndView("viewStudent");
        model.addObject("studentdata",this.studentService.findStudentById(id));
        return model;
    }

但是使用value =“/ view”“viewStudent”的CSS jsp页面已加载。任何人都可以帮我解决这个问题吗?为什么我无法加载CSS(value =“/ view / {id}”?

1 个答案:

答案 0 :(得分:1)

我通过以下代码解决了这个问题。

我失踪/在href。