我使用 Spring MVC 控制器生成 javascript,如下所示:
@RequestMapping(value="path/to/handler", method = RequestMethod.GET, produces ="text/javascript")
public ModelAndView getJs(HttpServletRequest request) {
String contextPath = request.getContextPath();
return new ModelAndView("/path/to/js/", "contextPath", contextPath);
}
我不确定如何为 javascript 资源设置视图解析器。有人可以建议如何为 js 资源设置视图解析器吗?