springmvc页面跳转后缀HTML和jsp不同时的解决方案

1.创建工具类

public class HtmlResourceView extends InternalResourceView {

	@Override  
	public boolean checkResource(Locale locale){
		File file=new File(this.getServletContext().getRealPath("/")+getUrl());
		return file.exists(); //判断页面是否存在
	}
}

2.xml文件的配置


	
	
	
		  
		  
		
		
	
	
	    
          
          
          
            
            
      
	
	
	


你可能感兴趣的:(springmvc)