springmvc配置步驟
建立 sprimvc步驟:
(一)先配置好Jdk環境,有myeclipse或者eclipse
(二)下載安裝好tomcat伺服器。
(三)開啟myeclipse,建立web 專案。開始建立包。
(四)新增springmvc.cml配置
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?> SpringMVC_Demo0621aindex.htmlindex.htmindex.jspdefault.htmldefault.htmdefault.jsp dispatcherServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation/WEB-INF/springmvc.xml1dispatcherServlet/
(五)新增controller
package com.atguigu.springmvc.handler;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
/**
*
* @author HH
* @date 2017-6-21
* @version jdk 1.7.0
* @function springmvc測試1
*/
@Controller
public class HelloWork {
@ResponseBody
@RequestMapping(value="/helloword",method=RequestMethod.GET)
public String hello(){
System.out.println("hello,create a world!");
return "success";
}
@RequestMapping("/helloword2")
//@ResponseBody
public String sayHello(){
System.out.println("say hello to springmvc");
return "success";
}
}
(六)在web-inf下邊建立views資料夾,建立success.jsp表示跳轉頁面。
(七)釋出到tomcat伺服器,即可完成第一個簡單的springmvc的配置了。