如何为特定的url设置spring url映射配置
我有一个网络应用程序,其网址如下:
共享模块
/share/001.htm
/share/002.htm
应答模块
/answer/001.htm
/answer/002.htm
我如何为上述配置 spring url 映射?
我尝试使用如下配置:
<bean id="simpleUrlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<!-- user -->
<prop key="/share/*.htm">sharecontroller</prop>
<prop key="/answer/*.htm">usercontroller</prop>
</props>
</property>
</bean>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
任何人都可以帮助我吗?提前致谢!
I have a web application which has url as below:
Share module
/share/001.htm
/share/002.htm
Answer module
/answer/001.htm
/answer/002.htm
How can i config spring url mapping for above?
I try to use configruation as below:
<bean id="simpleUrlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<!-- user -->
<prop key="/share/*.htm">sharecontroller</prop>
<prop key="/answer/*.htm">usercontroller</prop>
</props>
</property>
</bean>
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
Anyone can help me on this? thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了以简单的方式做到这一点,您将需要 Spring 3.0 的 Rest URI 模板支持。
请参阅此博客:Spring 3 中的 REST:@MVC< /a> 为例。
To do it in an easy way you will need Spring 3.0's Rest URI Templates support.
See this Blog: REST in Spring 3: @MVC for an example.