@RequestMapping的學習

Springmvc使用@RequestMapping註解爲控制器指定能夠處理哪些URL請求,html

在控制器的類定義及方法定義處均可標註:java

類定義處:提供初步的請求映射信息,相對於web應用的根目錄web

方法定義:提供進一步的細分映射信息,相對於類定義處的URLspring

技巧:若是@RequestMapping裏只有一個屬性,則不用寫valuemvc

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<a href="springmvc/hello">hello world</a>
</body>
</html>
@Controller
@RequestMapping("/springmvc")
public class helloworldhandler {
	@RequestMapping("/hello")
	public String hello() {
		System.out.println("歡迎走進spring MVC,你建立的第一個方法成功了");
		return "success";
	}

}

@RequestMapping修飾類,則注意在index.jsp中的訪問核心方法的路徑也要相應的改動app

而後就能夠運行成功了!!!!jsp

環境的搭建真的是一切,感受以後的學習會很順利噠,獎勵本身一個防曬噴霧吧,明天到,哈哈哈學習

相關文章
相關標籤/搜索