基于注释的视图映射

发布于 2024-08-30 09:42:46 字数 641 浏览 7 评论 0原文

我正在尝试了解基于注释的映射,但在将请求直接映射到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

土豪 2024-09-06 09:42:46

您可以使用 ParameterizedViewController,它将请求重定向到“viewName”属性中设置的视图。


<bean name="/helloworld.htm" class="org.springframework.web.servlet.mvc.ParameterizableViewController">  
    <property name="viewName" value="helloworld"/>  
</bean>

You can use the ParameterizableViewController, which redirects the request to the view set in the "viewName" attribute.


<bean name="/helloworld.htm" class="org.springframework.web.servlet.mvc.ParameterizableViewController">  
    <property name="viewName" value="helloworld"/>  
</bean>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文