真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

springMVC配置-創(chuàng)新互聯(lián)

springMVC配置

一、MVC與SpringMVC

1、MVC

在蒸湘等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供成都網(wǎng)站設(shè)計、做網(wǎng)站 網(wǎng)站設(shè)計制作定制設(shè)計,公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站建設(shè),成都全網(wǎng)營銷,成都外貿(mào)網(wǎng)站制作,蒸湘網(wǎng)站建設(shè)費用合理。

springMVC配置

2、SpringMVC
springMVC配置

二、springMVC配置步驟

1、導(dǎo)包;
2、添加spring的配置文件;
3、配置DispatcherServlet(與web.xml中配置);
4、寫Controller(處理器);
5、寫JSP;

三、配置過程

1、導(dǎo)包
使用maven導(dǎo)包,在maven配置文件pom.xml配置如下(使用阿里云的mavev):


    4.0.0
    cn.qiuuuu
    springmvc
    0.0.1-SNAPSHOT
    war
    
        
        junit
        junit
        4.10
        test
        
        
        org.statefulj.framework
        statefulj-framework-binders-springmvc
        2.1
        javadoc
    
    

導(dǎo)包完成后,會在Maven Dependencies中多出maven基礎(chǔ)依賴包
springMVC配置

2、添加spring配置文件
在項目的src/main/resources中新建一個xml文件來作為spring的配置文件,命名為:spring.xml,寫入:




3、配置DispatcherServlet
在項目的web.xml中配置一個servlet:



    springmvc
    
        index.html
        index.htm
        index.jsp
        default.html
        default.htm
        default.jsp
    
    
        springmvc
        
            org.springframework.web.servlet.DispatcherServlet
        
        
        
            contextConfigLocation
            classpath:springmvc.xml
        
        1
    
    
        springmvc
        *.do
    

4、寫Controller

package test;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;

public class ControllerHello implements Controller{

    public ModelAndView handleRequest(HttpServletRequest arg0, HttpServletResponse arg1) throws Exception {
        System.out.println("handleRequest()");
        return new ModelAndView("hello");
    }

}

5、寫一個JSP

<%@ page language="java" contentType="text/html; charset=utf-8"
        pageEncoding="utf-8"%>



    
    Insert title here


    

Hello SpringMVC!

6、再次配置spring.xml



    
    
        
            
                helloController
            
        
    
    
    
        
    
    
    
    
        
        
    

四、測試

將springhello部署到tongcat服務(wù)器,然后在瀏覽器中輸入http://localhost:8089/hellospring/hello.do 訪問
springMVC配置

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


分享文章:springMVC配置-創(chuàng)新互聯(lián)
當前路徑:http://weahome.cn/article/jopic.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部