SpringMVC小实现

引入 Spring-Mvc 的依赖


    org.springframework
    spring-webmvc
    4.3.10.RELEASE
``	

     
     
     
     
  • 1
  • 2
  • 3
  • 4
  • 5

配置两个 "器"








–>`

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

配置前端控制器


    dispatcherServlet
    org.springframework.web.servlet.DispatcherServlet
<init-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
</init-param>



dispatcherServlet
*.action

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

编写处理器

/**
 * 处理器
 */
@Controller
public class MyController01 {
    @RequestMapping("/func1.action")
    public ModelAndView func1() {
        System.out.println("func1..");
        ModelAndView modelAndView = new ModelAndView("index02.jsp");
        modelAndView.addObject("username", "admin");
        return modelAndView;
    }
}

   
   
   
   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

编写视图

<%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
    

    index02


    ${username}



   
   
   
   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
        

你可能感兴趣的:(SpringMVC小实现)