本篇文章為大家展示了怎么利用springmvc與maven搭建一個(gè)web項(xiàng)目,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
創(chuàng)新互聯(lián)是一家專(zhuān)業(yè)提供拉孜企業(yè)網(wǎng)站建設(shè),專(zhuān)注與網(wǎng)站建設(shè)、成都網(wǎng)站制作、H5開(kāi)發(fā)、小程序制作等業(yè)務(wù)。10年已為拉孜眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專(zhuān)業(yè)網(wǎng)站制作公司優(yōu)惠進(jìn)行中。具體內(nèi)容如下
1、創(chuàng)建一個(gè)maven project 為spring1
2、進(jìn)行項(xiàng)目的配置:默認(rèn)的java 1.5 在properties中選擇project facts項(xiàng)目進(jìn)行配置,反選web之后修改java環(huán)境為1.8.修改之后如下圖:
3. 配置好的工作目錄如下:
4 修改pom.xml文件
增加兩個(gè)jar包:servlet和spring webmvc
pom.xml如下:
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > <web-app> <servlet> <servlet-name>spring</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>spring</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
4. 默認(rèn)的配置文件是spring-servlet.xml ,在/web-inf下創(chuàng)建配置文件,內(nèi)容如下:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"> <!-- 配置掃描的包 --> <context:component-scan base-package="spring1.*" /> <!-- 注冊(cè)HandlerMapper、HandlerAdapter兩個(gè)映射類(lèi) --> <mvc:annotation-driven /> <!-- 訪(fǎng)問(wèn)靜態(tài)資源 --> <mvc:default-servlet-handler /> <!-- 視圖解析器 --> <bean > <property name="prefix" value="/WEB-INF/"></property> <property name="suffix" value=".jsp"></property> </bean> </beans>
注:在這個(gè)默認(rèn)的配置過(guò)程中 程序會(huì)掃描spring1包中的所有的controller
5、 在src/main/java創(chuàng)建controller
package spring1; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class DemoController { @RequestMapping("/index") public String index(){ return "index"; } }
6、 在webapp目錄下創(chuàng)建index.jsp.
<html> <body> <h3>Hello World!</h3> </body> </html>
7、 部署項(xiàng)目到tomcat上,部署的內(nèi)容如下:
8、啟動(dòng)tomcat 在瀏覽器中輸入:http://localhost:8080/spring1/
上述內(nèi)容就是怎么利用springmvc與maven搭建一個(gè)web項(xiàng)目,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
網(wǎng)頁(yè)題目:怎么利用springmvc與maven搭建一個(gè)web項(xiàng)目-創(chuàng)新互聯(lián)
分享鏈接:http://jinyejixie.com/article38/ccecpp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供商城網(wǎng)站、網(wǎng)站改版、網(wǎng)站維護(hù)、小程序開(kāi)發(fā)、外貿(mào)建站、營(yíng)銷(xiāo)型網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容