日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

spring12:注解的方式实现di(依赖注入)

發布時間:2025/6/15 编程问答 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 spring12:注解的方式实现di(依赖注入) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

package com.atChina.Test;import org.springframework.stereotype.Component;/** @Component: 創建對象,默認創建的是單例對象* 屬性: value,表示對象的id* 位置: 在類的上面,表示創建該類的對象* @Component(value="myStudent")等同于<bean id="myStudent" class="com.atChina.Test.Student" />* 和@Component功能相同的其他注解:* 1.@Repository:放在dao層實現類的上面,創建dao層* 2.@Service:放在service層的實現類上面,創建service對象3.@Controller:放在處理器類的上面,創建控制器對象 */// 方式一 //@Component(value="student")// 方式二: value可以省略 //@Component("student") // 方式三: 不指定對象名稱,由框架生成默認的名稱:類名的首字母小寫 @Component public class Student {private String name;private int age;public void setName(String name) {this.name = name;}public void setAge(int age) {this.age = age;}@Overridepublic String toString() {return "Student [name=" + name + ", age=" + age + "]";} } @Testpublic void test1(){String configLocation = "com/atChina/Test/applicationContext.xml"; // 類路徑的根目錄ApplicationContext ctx = new ClassPathXmlApplicationContext(configLocation);Student ss = (Student)ctx.getBean("student");System.out.println("stduent:"+ss);}

?

<?xml version="1.0" encoding="UTF-8"?> <!-- 引用Spring的多個Schema空間的格式定義文件 --> <beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"xmlns:context="http://www.springframework.org/schema/context"xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context.xsdhttp://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop.xsdhttp://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx.xsd "><!-- 聲明組件掃描器,指定組件所在的包名component-scan標簽:組件掃描器base-package:指定注解所在的包名,框架會掃描這個包和子包中類的注解--><context:component-scan base-package="com.atChina.Test" /><!-- 指定多個包中的注解 --><!-- 第一種方式:多次使用 component-scan --><context:component-scan base-package="com.atChina.Test1" /><context:component-scan base-package="com.atChina.Test2" /><!-- 第二種方式:使用分隔符(;或,),指定多個包 --><context:component-scan base-package="com.atChina.Test1;com.atChina.Test2" /><!-- 第三種方式:指定父包 --><context:component-scan base-package="com.atChina" /></beans>

?

總結

以上是生活随笔為你收集整理的spring12:注解的方式实现di(依赖注入)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。