这是我在web.xml中的配置
<session-config>
<session-timeout>40</session-timeout>
<cookie-config>
<path>/</path>
</cookie-config>
</session-config>提前谢谢
发布于 2022-09-30 05:37:06
以下是Absolute path in instead of path relative to mapping of spring servlet的答案
<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="alwaysUseFullPath" value="true"/>
<property name="mappings">
<props>
<prop key="/static/*">staticResources</prop>
</props>
</property>
</bean>
<bean id="staticResources" class="org.springframework.web.servlet.resource.ResourceHttpRequestHandler">
<property name="locations">
<list>
<value>/WEB-INF/static/</value>
</list>
</property>
</bean>https://stackoverflow.com/questions/73897591
复制相似问题