Springmvc 二 第乙個程式

2022-09-08 03:27:14 字數 1437 閱讀 1927

建立m**en專案,新增web支援

匯入spring-webmvc依賴

解決m**en靜態資源過濾的問題

src/main/j**a

**/*.properties

**/*.xml

false

src/main/resources

**/*.properties

**/*.xml

false

file---project structure---artifacts-----web-inf----右鍵新建lib資料夾----單擊加號,新增jar包

編寫web.xml

<?xml version="1.0" encoding="utf-8"?>

xmlns:xsi=""

version="4.0">springmvc

org.springframework.web.servlet.dispatcherservlet

contextconfiglocation

classpath:springmvc.xml1/

建立springmvc.xml

<?xml version="1.0" encoding="utf-8"?>

建立hellocontroller

package com.ruanyuan.controller;

import org.springframework.stereotype.controller;

import org.springframework.ui.model;

import org.springframework.web.servlet.modelandview;

import j**a.lang.annotation.annotation;

@controller

public class hellocontroller

}

建立hello.jsp

created by intellij idea.

user: zbp

date: 2020/3/3

time: 15:35

to change this template use file | settings | file templates.

--%>

$

執行結果

解決中文亂碼問題

characterencodingfilter

org.springframework.web.filter.characterencodingfilter

encoding

utf-8

/*

springmvc第乙個程式

1.配置前端控制器 springmvc org.springframework.web.servlet.dispatcherservlet contextconfiglocation classpath springmvc.xml action然後便在原始檔下新建乙個springmvc.xml 2....

SpringMVC 第乙個簡單的程式

學習springmvc,我們來記錄下第乙個helloword的程式 首先。我們組織須要的jar包 commons logging 1.1.3.jar spring aop 4.1.7.release.jar spring beans 4.1.7.release.jar spring context ...

第乙個REST風格SpringMVC程式

第乙個restful springmvc 程式 前後端用ajax互動資料,實現增刪改查功能。這裡只用到了springmvc 框架,所以寫了乙個userbean類,來充當資料庫。總結 1.userbean類只宣告了一些私有成員變數和一些set get 有參和無參構造方法。真正的bean類沒有構造方法,...