我在jboss-eap-6.4
中部署了一个Spring启动MVC应用程序。但是没有呈现弹簧形式标签的JSP页面。
我在application.properties文件中添加了以下行
server.servlet-path=/*
spring.view.prefix=/WEB-INF/jsp/
spring.view.suffix=.jsp
能够使用url模式命中控制器,但是当我尝试从控制器重定向jsp时,低于错误。
ERROR [org.springframework.boot.context.web.ErrorPageFilter]
(http-/127.0.0.1:8080-1) Cannot forward to error page for request [/login]
as the response has already been committed. As a result, the response may
have the wrong status code. If your application is running on WebSphere
Application Server you may be able to resolve this problem by setting
com.ibm.ws.webcontainer.invokeFlushAfterService to false
如果jboss-eap-6.4
支持使用JSP的Spring启动MVC应用程序,请告诉我。
答案 0 :(得分:0)
我遇到了确切的问题。安装Jboss补丁jboss-eap-6.4.6-patch.zip后,问题不再发生。
修补后,我不需要使用设置server.servlet-path = / *