- spring 中, action和url的对应关系
在web.xml中,这样配置:
<servlet-mapping >
<servlet-name> spring</ servlet-name>
<url-pattern> *.html</url-pattern >
</servlet-mapping >
由此,我们可以看到,要进入到LoginController,我们需要在浏览器中输入:localhost:8080/springMybatis/background/to_login.html
这里面的background、to_loggin,和html,分别是在Controller中和web.xml中配置的。