寫乙個spring mvc後台傳值到前台的乙個小例子。
分為以下幾個步驟:
1.建立web專案。
匯入專案包。具體有如下:
2.配置web.xml檔案,配置servlet
hellospring
org.springframework.web.servlet.dispatcherservlet
contextconfiglocation
classpath:hellospring-servlet.xml
1hellospring
/3.新增spring配置檔案並進行配置。
我的spring配置檔案叫hellospring-servlet.xml,放在src下。
在元素裡新增如下內容:
class="org.springframework.web.servlet.view.internalresourceviewresolver">
4.編寫邏輯**:在src下建立com.demo.controller包
編寫類myspringcontroller。具體**如下:
package com.demo;
import org.omg.corba.request;
import org.springframework.stereotype.controller;
import org.springframework.ui.modelmap;
import org.springframework.web.bind.annotation.requestmethod;
@controller//註解,配置掃瞄到controller
public class myspringcontroller
}----------------------這個方法也可以這麼寫
public modelandview helloworld()
5.去web-inf建立views資料夾,在views資料夾下建立hello.jsp
在jsp頁面用el表示式就可以取到數值
$ 6.訪問http://localhost:8080/專案名/hello會跳轉到hello.jsp顯示資料。
至此乙個簡單的spring mvc就搭建完成。
個人搭建的,如果有問題歡迎指正。
CSS入門教程
css是 cascading style sheets 的簡稱,中文翻譯為 串接樣式表 也有人翻譯為 樣式表 css用以作為網頁的排版和風格設計,在web標準建站中,對css的熟悉和使用是相當重要的乙個內容。css的作用是彌補html的不足,讓網頁的設計更為靈活。這個文章只是為您介紹css的基礎應用...
CSS入門教程
css是 cascading style sheets 的簡稱,中文翻譯為 串接樣式表 也有人翻譯為 樣式表 css用以作為網頁的排版和風格設計,在web標準建站中,對css的熟悉和使用是相當重要的乙個內容。css的作用是彌補html的不足,讓網頁的設計更為靈活。這個文章只是為您介紹css的基礎應用...
Linux入門教程
linux下有兩種使用者 1.root使用者,提示符 2.普通使用者,提示符 在 etc目錄下有乙個inittab檔案,其中有一行配置 id 3 defualt 其中,數字3就代表一啟動進入字元終端,如果改為5則代表一啟動進入x window 修改口令 passwd 退出登入 exit 關閉機器 只...