springMVC的RequestMapping请求不到路径的解决

springMVC RequestMapping请求不到路径

代码展示:

controller层配置:

@Controller 
public class UserController { 
 private UserService service = new UserServiceImpl();  
 @RequestMapping(value="/list",method=RequestMethod.GET)
 public String list(Model model) throws Exception {
  List list = service.getAll(); 
  model.addAttribute("list", list); 
  return "list"; 
 } 
}

web.xml配置:

 
   springmvc 
   org.springframework.web.servlet.DispatcherServlet
   
    contextConfigLocation
    classpath:springmvc.xml
   
  
  
   springmvc
   *.action
  

springmvc.xml的配置:

 
 
 
  
  
  
   
   
 
 
  
 
   
    
   
  
 
  
 

jsp层,就这一句话:

发现直接测试接口:项目名+list.action是没用的直接报404的路径找不到

另外,最后跳转的/WEB-INF/view/list.jsp也是存在的

错误所在:

原来是springmvc.xml的配置文件配置错了,注解的映射和驱动错误的使用了context:annotation-config,应该使用的是mvc:annotation-driven

Controller路径的问题RequestMapping(“/...“)导致获取不到页面传递给后台的数据

记录一个error

将RequestMapping路径和一个页面的名称(detail.html)设置成一样的时候,导致根本没有跳转页面!而是直接跳到了传递数据的Controller!

跳转页面的Controller

springMVC的RequestMapping请求不到路径的解决_第1张图片

传递数据的Controller

springMVC的RequestMapping请求不到路径的解决_第2张图片

已解决:

将RequestMapping(“/…“)的路径更改!!!

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

你可能感兴趣的:(springMVC的RequestMapping请求不到路径的解决)