Spring MVC環境搭建

2022-09-11 21:09:22 字數 1429 閱讀 3819

2.在新建的專案中src-main下新建兩個目錄,j**a和resources:

3.將j**a右鍵-marked directory as-source root,將resourcs右鍵-marked as-resources:

4.在pom.xml中引入jar包:

5.0.2.release

org.springframework

spring-context

$org.springframework

spring-web

$org.springframework

spring-webmvc

$j**ax.servlet

servlet-api

2.5provided

j**ax.servlet.jsp

jsp-api

2.0provided

5.在web-inf下面的web.xml中配置前端控制器:

dispatcherservlet

class>org.springframework.web.servlet.dispatcherservletclass>

contextconfiglocation

classpath:springmvc.xml

1

6.建立spring的配置檔案:

7.配置伺服器:

將自己的專案加進去:

8.部署成功。

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...

spring mvc 環境搭建

1 spring mvc環境的搭建 2 新建乙個web專案,例如 example,將相應的jar包新增到專案中,lib目錄結構如圖 3 開啟專案中的web.xml檔案,加入如下 hello org.springframework.web.servlet.dispatcherservlet 1以上 的...