SpringMVC html中超链接无法跳转原因

1、html代码

 


                               品牌词管理
         
 

 

2、java代码

public class BrandDictManage {
@RequestMapping("/knowledge-mining/brandDictManage.html")
public String brandDictManageWeb(ModelMap modelMap, HttpServletRequest request, @RequestParam(required = false) String keyword,
         @RequestParam(required = false) String page) {

         .........................................

        }

}

 

点击上面的超链接无法跳转到BrandDictManage中是因为忘记在BrandDictManage类名前面加@Controller了。

 

 

你可能感兴趣的:(SpringMVC html中超链接无法跳转原因)