入門Spring6

冰天!發表於2024-09-05

1.像web一樣建立maven專案,然後像pom.xml裡匯入spring juint 的依賴
2.如何不用new 出物件 而且可以使用物件
首先得在resource裡建立Spring 得bean.xml

裡面得配置為
首先有兩種方法實
(1)
左邊得程式碼為
public void test(){
ApplicationContext context=new ClassPathXmlApplicationContext("bean.xml");
User user = (User) context.getBean("user");
System.out.println(user);
user.add();
}
右邊圖裡就是。