当我们作为String返回时spring如何解析视图?

时间:2014-11-04 14:53:04

标签: spring spring-mvc

在模型弹簧返回时解析 Dispatcher servlet 中的视图,但在返回字符串时Spring如何解析视图

@RequestMapping(value = "/", method = RequestMethod.GET)
    public String home(Locale locale, Model model) {
        Date date = new Date();
        DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.LONG,
        DateFormat.LONG, locale);
        String formattedDate = dateFormat.format(date);
        model.addAttribute("serverTime", formattedDate);
        System.out.println("serverTime"+formattedDate);
            return "resources/home.html";
    }

这里在上面的代码中我返回一个字符串dispatcherservlet如何解析它的视图。

1 个答案:

答案 0 :(得分:1)

它的视图解析器,它在逻辑名和实际资源之间进行映射,而不是DispatcherServlet。

我认为你的配置文件中会有以下声明(可能是一些不同的视图解析器)。

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">    
      <property name="prefix">    
            <value>/WEB-INF/</value>    
        </property>    
        <property name="suffix">    
            <value>.jsp</value>    
        </property>    
    </bean>

所以当你写回来&#34; home.jsp&#34;在您的控制器内部,它查看解析器作业以将其与资源/WEB-INF/home.jsp映射并返回。查看解析器只需将前缀和后缀附加到您的逻辑名称并映射到实际资源。