基于注释的视图映射
我正在尝试了解基于注释的映射,但在将请求直接映射到 jsp 时遇到一些问题。
所有请求都必须通过控制器吗?是否可以使其仅转到 jsp 而无需为 GET
声明 RequestMapping
?
我正在使用 InternalResourceViewResolver
。下面是我的 app-servlet.xml
<context:annotation-config/>
<context:component-scan base-package="com.pioneer.b2broe.web" />
<mvc:annotation-driven />
<mvc:view-controller path="/" view-name="home"/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/WEB-INF/jsp/"
p:viewClass="org.springframework.web.servlet.view.JstlView" p:suffix=".jsp" p:order="2"/>
I am trying to get my head around annotation based mappings and I am having some trouble mapping requests directly to jsp.
Do all request have to go through a controller? Is it possible to make it just go to a jsp without declaring a RequestMapping
for GET
?
I am using a InternalResourceViewResolver
. Below is my app-servlet.xml
<context:annotation-config/>
<context:component-scan base-package="com.pioneer.b2broe.web" />
<mvc:annotation-driven />
<mvc:view-controller path="/" view-name="home"/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" p:prefix="/WEB-INF/jsp/"
p:viewClass="org.springframework.web.servlet.view.JstlView" p:suffix=".jsp" p:order="2"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ParameterizedViewController,它将请求重定向到“viewName”属性中设置的视图。
You can use the ParameterizableViewController, which redirects the request to the view set in the "viewName" attribute.