搭建SpringMvc的注意事项(血和泪的教训)

时间:2023-01-29 20:55:51

搭建的步骤:

1、导入Spring的包;

2、配置web.xml和SpringMvc的配置文件(主要是在哪里搜寻Controller和J返回的SP页面);


注意事项:

1、新建的Controller的类的上面一定要加上@Controller;

2、Controller的 @requestMapping 和Controller对应的方法的Controller的@requestMapping不能够相同;

3、在使用依赖注入,使用annotation的时候,一定要使用接口的类型进行声明变量;


@Controller
@RequestMapping("/index")
public class IndexController {

@RequestMapping({"/index1","/"})
public String index(){

return "index";
}
}