Servlet 3.0+无web.xml配置Web
Servlet 3.0+无web.xml配置Web 目录结构: [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-DyZyM96E-1579497459107)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20200118154248380.png)] package com . jack . springMVC . web ; import org . springframework . stereotype . Controller ; import org . springframework . web . bind . annotation . RequestMapping ; @Controller public class HelloController { @RequestMapping ( "/index" ) public String hello ( ) { return "index" ; } } package com . jack . springMVC ; import org . springframework . context . annotation . Bean ; import org .