ssm 框架中适配器标签作用

目录结构:

    ssm 框架中适配器标签作用_第1张图片

application-mvc.xml配置文件:



    
    

    
    
        
        
    
    
    

controller:

@Controller
@RequestMapping("user")
public class TestController {

   @RequestMapping("dologin")
    public  String test(String userCode,String userPassword){

       return "login";
   }

当浏览器输入localhost:8080/user/dologin会显示404页面

如果配置文件中将如下标签去掉可以访问成功,如果加上会报404

这里就显示适配器作用了,我们将配置文件中加上适配器标签即可访问成功,配置文件如下



    
    
    
    
    
    
        
        
    
    
    

 

转载于:https://my.oschina.net/u/3535099/blog/3101878

你可能感兴趣的:(ssm 框架中适配器标签作用)