标签: spring model-view-controller
我有一个spring mvc项目,如何从控制器加载webapp外部的html文件?
我尝试添加
<mvc:resources mapping="/resources/**" location="/resources/" />到applicationContext
<mvc:resources mapping="/resources/**" location="/resources/" />
并通过控制器
返回“ redirect:resources / file.html”
资源位于webapp外部,位于根目录下 但这会产生404错误,有什么想法吗?