Spring 第乙個hello world程式

2022-06-12 15:03:12 字數 1003 閱讀 3785

我們先寫乙個類 裡面有個字串

public

class

hello

public

void

setstr(string str)

@override

public

string tostring()

}

注意裡面的set方法 非常重要

然後我們用spring的配置檔案進行類的註冊

xml version="1.0" encoding="utf-8"

?>

<

beans

xmlns

=""xmlns:xsi

=""xsi:schemalocation=""

>

<

bean

id="hello"

class

="com.lei.pojo.hello"

>

<

property

name

="str"

value

="spring"

/>

bean

>

beans

>

可以看到最後那幾行是非常重要的 我們宣告了乙個bean 名字叫hello 類是來自com lei pojo 的hello類

然後此例項物件的字段str為"spring「(這裡使用到了set方法)

我們進行測試一下

分享乙個好用的快捷鍵(crtl+h)檢視繼承關係圖

第乙個Spring程式

通過官方文件,編寫第乙個spring程式 匯入spring的jar包 org.springframework spring webmvc 5.3.3 編寫實體類 public class hello override public string tostring public string getn...

第乙個Spring例子

手動新增sechame檔案 windows preferences myeclipse files and editors xml xmlcatalog 點add key type中選擇url file system 在dist resources spring beans 2.5.xsd sech...

spring第乙個程式筆記

安裝 貌似不用,最簡單使用只要spring.jar包就可以了 調通例子 使用的是xiaxin給的例子,包含在文件http xiaxin.spring dev guide.rar中。例子筆記 不少摘自該文件 1 我們的所有程式 中 除測試 之外 並沒有出現spring中的任何元件。2 upperact...