spring mvc 環境搭建

2021-09-01 17:04:13 字數 631 閱讀 6988

1、spring mvc環境的搭建

2、新建乙個web專案,例如:example,將相應的jar包新增到專案中,lib目錄結構如圖:

3、開啟專案中的web.xml檔案,加入如下**:

hello

org.springframework.web.servlet.dispatcherservlet

1以上**的意思是:所有的url請求都將經過hello處理

4、在專案的web-inf目錄中新新增乙個spring bean的配置檔案,檔名必須是hello-servlet.xml。要與web.xml檔案中的servlet-name相對應

5、在hello-servlet.xml檔案中輸入以下**:

6、在com.controller包中建立乙個類(hellocontroller),輸入如下**:

@controller

public class hellocontroller {

/**所有經過/,或者/hello的請求,都將由此方法處理,也就是說用哪個url來對應*/

7、在/web-inf/jsp/目錄下新建乙個jsp頁面,輸入如下內容

8、發布專案,在位址列中輸入請求路徑:http://localhost:8080/example/hello

SpringMVC環境搭建

1.導jar包 core beans expression context web webmvc 2.在web.xml中新增乙個核心的servlet 設定為優先啟動 org.springframework.web.servlet.dispatcherservlet contextconfigloca...

Spring MVC 環境搭建

介紹乙個反編譯的eclipse外掛程式jd eclipse。安裝方式參考 1.配置web.xml檔案 配置servlet將url與spring mvc框架中的dispatcherservlet類繫結起來 springmvc org.springframework.web.servlet.dispat...

SpringMVC環境搭建

1.匯入jar包的座標 2.準備spring mvc.xml檔案 3.在web.xml檔案中配置前端總控制器,和載入springmvc的配置檔案 servlet servlet name dispatcherservlet servlet name servlet class org.springf...