在WEB-INF目录下创建一个springapp-servlet.xml文件,它的命名规则是web.xml中的servlet-name 加上’-servlet’后缀,这是在springframework中的标准命名法则.
现在,我们声明一个bean :springappController 他对应的类是SpringappController.class
这个定义用于我们控制业务逻辑。我们还需要定义一个url mapping作为http调用的路径.
代码:
springapp/WEB-INF/springapp-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<BEANS>
<BEAN ID="SPRINGAPPCONTROLLER" CLASS="SPRINGAPPCONTROLLER" />
<BEAN ID="URLMAPPING" CLASS="ORG.SPRINGFRAMEWORK.WEB.SERVLET.HANDLER.SIMPLEURLHANDLERMAPPING">
<PROPERTY NAME="MAPPINGS">
<PROPS>
<PROP KEY=" hello.htm?>
return new ModelAndView("hello.jsp");
}
}
现在我们运行build, deploy, stop, start 命令.
这样我们就成功地建立了一个mvc应用,访问http://loaclhost:8080/springapp/hello.htm
文章来源于领测软件测试网 https://www.ltesting.net/