spring-data-jpa学习(一)环境配置1.2

2.WebConfig.class

WebConfig.class的作用就等价于配置DispatcherServlet的xml文件

dispatcherServlet-servlet.xml的一般配置如下,一般基础的dispatcherServlet配置文件只是进行view的Resolve。

<?xml version="1.0" encoding="UTF-8"?>  
<beans:beans xmlns="http://www.springframework.org/schema/mvc"  
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
    xmlns:beans="http://www.springframework.org/schema/beans"  
    xmlns:context="http://www.springframework.org/schema/context"  
    xsi:schemaLocation="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">  
  
    <!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->  
      
    <!-- Enables the Spring MVC @Controller programming model -->  
    <annotation-driven />  
  
    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->  
    <resources mapping="/resources/**" location="/resources/" />  
  
    <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->  
    <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
        <beans:property name="prefix" value="/WEB-INF/views/" />  
        <beans:property name="suffix" value=".jsp" />  
    </beans:bean>  
      
    <context:component-scan base-package="com.codeevoship.app" />  
</beans:beans>  

对应的零配置java文件如下:

@Configuration
@ComponentScan(basePackages = WebConfig.CONFIG_PACKAGE)
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter implements ApplicationContextAware{
	public static final String CONFIG_PACKAGE="test";
	private ApplicationContext applicationContext;
	
	@Bean
	public InternalResourceViewResolver getViewResolver(){
		InternalResourceViewResolver internalResourceViewResolver=new InternalResourceViewResolver();
		internalResourceViewResolver.setPrefix("/WEB-INF/views/");
		internalResourceViewResolver.setSuffix(".jsp");
		internalResourceViewResolver.setViewClass(JstlView.class);
		internalResourceViewResolver.setApplicationContext(applicationContext);
		return internalResourceViewResolver;
	}

	@Override
	public void setApplicationContext(ApplicationContext arg0)
			throws BeansException {
		this.applicationContext=arg0;
	}
	
}


但是奇怪的是,我在controller中进行使用的时候,返回string并不能resolve成功,必须返回modelandview才行。

@RequestMapping(value={"/home"})
	ModelAndView getHomeView(){
		ModelAndView modelAndView=new ModelAndView("Home");
		return modelAndView;
	}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值