gpt4 book ai didi

java - 静态 HTML 页面的 Spring View 解析器

转载 作者:行者123 更新时间:2023-11-29 03:20:27 25 4
gpt4 key购买 nike

我有一些运行时生成的html文件放在

/WEB-INF/静态文件夹

在我的上下文文件中,我添加了下面的 View 解析器

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

和其他JSP由tile解析

但问题是什么时候给出生成的 html 文件的名称 Dispatcher servlets 给出警告并且 View 未解析

08:39:03,389  WARN PageNotFound:1110 - No mapping found for HTTP request with URI [/configserver/WEB-INF/static/page_1.html] in DispatcherServlet with name 'config'

最佳答案

我关注了这篇文章 How to serve .html files with Spring

这些是添加的静态内容

<mvc:resources mapping="/static/**" location="/WEB-INF/static/" />

然后我从 Controller 方法返回文件名

关于java - 静态 HTML 页面的 Spring View 解析器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23966027/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com