溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

教你快速搭建一個(gè)springMVC框架

發(fā)布時(shí)間:2020-12-01 17:15:52 來(lái)源:億速云 閱讀:148 作者:Leah 欄目:編程語(yǔ)言

這篇文章將為大家詳細(xì)講解有關(guān)教你快速搭建一個(gè)springMVC框架,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

一、搭建步驟

1、導(dǎo)入jar包、創(chuàng)建項(xiàng)目包結(jié)構(gòu)

2、在web.xml中配置前端控制器

3、編寫(xiě)springMvc核心配置文件

4、編寫(xiě)pojo類(lèi)和Controller類(lèi)測(cè)試

二、實(shí)現(xiàn)

1、導(dǎo)入jar包、創(chuàng)建項(xiàng)目包結(jié)構(gòu)

教你快速搭建一個(gè)springMVC框架

教你快速搭建一個(gè)springMVC框架

 2、在web.xml中配置前端控制器

<!-- springMvc前端控制器 -->
<servlet>
<servlet-name>springMvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!-- 指定springMvc核心配置文件位置
如果沒(méi)有指定那么默認(rèn)就會(huì)去"/WEB-INF/+ <servlet-name>標(biāo)簽中內(nèi)容 + -servlet.xml"中找
例如:"/WEB-INF/springMvc-servlet.xml"
-->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:SpringMvc.xml</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springMvc</servlet-name>
<url-pattern>*.action</url-pattern>
</servlet-mapping>

3、編寫(xiě)springMvc核心配置文件

<?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:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:dubbo="http://code.alibabatech.com/schema/dubbo" xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">

<!-- 配置@Controller注解掃描 -->
<context:component-scan base-package="cn.it.controller"></context:component-scan>

</beans>

4、編寫(xiě)pojo類(lèi)和Controller類(lèi)測(cè)試

pojo類(lèi)代碼:

package cn.it.pojo;

import java.util.Date;

public class Items {

private Integer id;
private String name;
private Float price;
private String pic;
private Date createtime;
private String detail;

public Integer getId() {
return id;
}

public void setId(Integer id) {
this.id = id;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name == null ? null : name.trim();
}

public Float getPrice() {
return price;
}

public void setPrice(Float price) {
this.price = price;
}

public String getPic() {
return pic;
}

public void setPic(String pic) {
this.pic = pic == null ? null : pic.trim();
}

public Date getCreatetime() {
return createtime;
}

public void setCreatetime(Date createtime) {
this.createtime = createtime;
}

public String getDetail() {
return detail;
}

public void setDetail(String detail) {
this.detail = detail == null ? null : detail.trim();
}
}

Controller類(lèi)代碼:

package cn.it.controller;

import java.util.ArrayList;
import java.util.List;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

import cn.it.pojo.Items;

@Controller
public class ItemsController {

//@RequestMapping指定URL到請(qǐng)求方法的映射,例如:
@RequestMapping("/itemsList")
public ModelAndView itemsList(){
List<Items>itemList = new ArrayList<Items>();

//商品列表
Items items_1 = new Items();
items_1.setName("聯(lián)想筆記本_3");
items_1.setPrice(6000f);
items_1.setDetail("ThinkPad T430 聯(lián)想筆記本電腦!");

Items items_2 = new Items();
items_2.setName("蘋(píng)果手機(jī)");
items_2.setPrice(5000f);
items_2.setDetail("iphone6蘋(píng)果手機(jī)!");

itemList.add(items_1);
itemList.add(items_2);

/*
* 模型和視圖:
* model模型:模型對(duì)象中存放了返回給頁(yè)面的數(shù)據(jù)
* view視圖:視圖對(duì)象中指定了返回的頁(yè)面的位置
*/
//創(chuàng)建ModelAndView對(duì)象
ModelAndView modelAndView = new ModelAndView();
modelAndView.addObject("itemList", itemList);
modelAndView.setViewName("/WEB-INF/jsp/itemList.jsp");
return modelAndView;
}
}

關(guān)于教你快速搭建一個(gè)springMVC框架就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI