Spring MVC:如何为索引页面创build一个默认的控制器?
我正在试图做一个标准的弹簧mvc hello世界应用程序,但我想把控制器映射到根。 (例如: http : //numberformat.wordpress.com/2009/09/02/hello-world-spring-mvc-with-annotations/ )所以唯一真正的区别是他们将其映射到主机\ appname \和我想将其映射到主机\ appname。
我将我的index.jsp放在src \ main \ webapp \ jsp中,并将其作为welcome文件映射到web.xml中。 我试过了:
@Controller("loginController") public class LoginController{ @RequestMapping("/") public String homepage2(ModelMap model, HttpServletRequest request, HttpServletResponse response){ System.out.println("blablabla2"); model.addAttribute("sigh", "lesigh"); return "index"; }
作为我的控制器,但我没有看到我的tomcat的控制台中没有出现。 有谁知道我在搞什么?
我的web.xml:
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5"> <!-- Index --> <welcome-file-list> <welcome-file>/jsp/index.jsp</welcome-file> </welcome-file-list> <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/mvc-dispatcher-servlet.xml</param-value> </context-param> <servlet> <servlet-name>springweb</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>springweb</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
mvc-dispatcher-servlet.xml:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <context:annotation-config /> <context:component-scan base-package="de.claude.test.*" /> <bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver"> <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" /> <property name="prefix" value="/jsp/" /> <property name="suffix" value=".jsp" /> </bean> </beans>
我正在使用Spring 3.0.5.release
或者这是不可能的,我需要把我的index.jsp回到web-inf的根,并把一个redirect到我的jsp内的某个地方,所以控制器拿起它?
即使按照Sinhue的设置,我也遇到了同样的问题,但我解决了这个问题 。
问题是,当我在我的WebContent目录中有文件index.jsp时,(Tomcat?)从“/”转发到“/index.jsp”。 当我删除,请求没有得到转发了。
我所做的诊断问题是做一个全面的请求处理程序,并打印到控制台的servletpath。 这告诉我,即使我的请求是为http:// localhost / myapp / ,servletpath被改为“/index.html”。 我期待它是“/”。
@RequestMapping("*") public String hello(HttpServletRequest request) { System.out.println(request.getServletPath()); return "hello"; }
所以总之,你需要遵循的步骤是:
- 在你的servlet映射中使用
<url-pattern>/</url-pattern>
- 在你的控制器中使用
RequestMapping("/")
- 摆脱web.xml中的欢迎文件列表
- WebContent中没有任何文件可以被视为默认页面 (index.html,index.jsp,default.html等)
希望这可以帮助。
redirect是一个选项。 你可以尝试的一件事就是创build一个非常简单的索引页面,放在WAR的根目录下,除了redirect到你的控制器之外
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <c:redirect url="/welcome.html"/>
然后用类似的东西把你的控制器映射到这个URL上
@Controller("loginController") @RequestMapping(value = "/welcome.html") public class LoginController{ ... }
最后,在web.xml中,为了让你的(新)索引JSP可用,请声明
<welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list>
我们可以简单地将Controller方法映射到默认视图。 例如,我们有一个index.html作为默认页面。
@RequestMapping(value = "/", method = GET) public String index() { return "index"; }
一旦完成,我们可以访问默认的应用程序上下文的页面
Eg http://localhost:8080/myapp
它适用于我,但有一些区别:
- 在web.xml中我没有welcome-file-list
- 我在课堂上没有@RequestMapping。
- 在方法级别,只需@RequestMapping(“/”)
我知道这些没有很大的区别,但我很确定(我现在不在工作)这是我的configuration,它适用于Spring MVC 3.0.5。
还有一件事。 您不会在web.xml中显示您的调度程序configuration,但也许有一些preffix。 它必须是这样的:
<servlet-mapping> <servlet-name>myServletName</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
如果这不是你的情况,你需要一个URL重写filter或尝试redirect解决scheme。
编辑:回答你的问题,我的视图parsing器configuration也有点不同:
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/view/" /> <property name="suffix" value=".jsp" /> </bean>
它可以以更简单的方式解决:在web.xml中
<servlet-mapping> <servlet-name>dispatcher</servlet-name> <url-pattern>*.htm</url-pattern> </servlet-mapping> <welcome-file-list> <welcome-file>index.htm</welcome-file> </welcome-file-list>
之后,使用任何你想用@RequestMapping(“index.htm”)处理index.htm的控制器。 或者只是使用索引控制器
<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping"> <property name="mappings"> <props> <prop key="index.htm">indexController</prop> </props> </property> <bean name="indexController" class="org.springframework.web.servlet.mvc.ParameterizableViewController" p:viewName="index" /> </bean>
只需在你的spring xml文件中添加一个条目即mvc-dispatcher-servlet.xml
<mvc:view-controller path="/" view-name="index"/>
把这个放到你的xml后,把你的默认视图或者jsp文件放到你的自定义JSP文件夹中,就像你在mvc-dispatcher-servlet.xml
文件中提到的那样。
用你的jsp名称改变index
。
实现它的一种方法是将您的欢迎文件映射到web.xml
文件中的控制器请求path:
[web.xml中]
<web-app ... <!-- Index --> <welcome-file-list> <welcome-file>home</welcome-file> </welcome-file-list> </web-app>
[LoginController.java]
@Controller("loginController") public class LoginController{ @RequestMapping("/home") public String homepage2(ModelMap model, HttpServletRequest request, HttpServletResponse response){ System.out.println("blablabla2"); model.addAttribute("sigh", "lesigh"); return "index"; }
我在SpringMVC webapps中使用的解决scheme是创build一个简单的DefaultController
类,如下所示:
@Controller public class DefaultController { private final String redirect; public DefaultController(String redirect) { this.redirect = redirect; } @RequestMapping(value = "/") public ModelAndView redirectToMainPage() { return new ModelAndView("redirect:/" + redirect); } }
可以使用以下弹簧configuration注入redirect: –
<bean class="com.adoreboard.farfisa.controller.DefaultController"> <constructor-arg name="redirect" value="${default.redirect:loginController}"/> </bean>
${default.redirect:loginController}
将默认为loginController
但可以通过在spring属性文件中插入default.redirect=something_else
来进行更改/设置一个环境variables等。
正如@Mike上面提到的,我也有: –
- 摆脱
web.xml
文件中的<welcome-file-list> ... </welcome-file-list>
部分。 - WebContent中没有任何文件可以被视为默认页面(
index.html
,index.jsp
,default.html
等)
这个解决scheme让Spring更担心redirect,这可能是你喜欢的,也可能不是。