Spring Boot入門 (二) :無xml配置實現(xiàn)

無xml配置的實現(xiàn)

  • 自Spring3.X 以后 spring 提供了很多的注解來代替XML文件的配置弦赖,最核心的是下面兩個注解。

    • ::@Configuration:: 標(biāo)注該類是配置類抵代,類似于我們定義的applicationContext.xml
    • ::@Bean:: 類似于我們在之前的spring配置文件中配置的<bean id=" " class="">
  • 有了上面兩個注解我們可以用編碼的方式來完成spring 的相關(guān)配置腾节,接下來我們就來使用java編碼的方式來實現(xiàn)spring配置

  • 1忘嫉、新建一個工程荤牍,里面是使用原生Spring實現(xiàn)無配置文件案腺。
    — 建立July-javaconfig 工程
    — 在pom.xml中加入一下內(nèi)容:

    <properties>
        <java.version>1.8</java.version>
        <spring.version>5.0.8.RELEASE</spring.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>${spring.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
            <version>${spring.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context-support</artifactId>
            <version>${spring.version}</version>
        </dependency>

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

這里使用spring 5.0.8.RELEASE 版本。
— 在工程中新建包 cn.org.july.spring.service
— 在該包下新建Class HelloService.class康吵,該service 實現(xiàn)一個方法sayHello()劈榨,代碼如下:

package cn.org.july.spring.service;

/***
 * @author***wanghongjie*
 * 2018-10-26*
 **/
public class HelloService {

    public String sayHello(){
        return "Hello JavaConfig.....";
    }
}

— 在該目錄下創(chuàng)建Class ApplicationConfiguration,該類相當(dāng)于定義了一個applicationContext.xml。
在ApplicationConfiguration.class 中定義一個方法晦嵌,該方法獲取HelloService 同辣。代碼如下:

package cn.org.july.spring.service;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

 /***
  * 使用 ApplicationConfiguration 代替 配置文件*
  *  @author   wanghongjie
  */
@Configuration  //相當(dāng)于定義了一個applicationContext.xml
public class ApplicationConfiguration {

    @Bean  // 相當(dāng)于在applicationContext.xml中定義一個bean標(biāo)簽
    public HelloService helloService(){
        return new HelloService();
    }
}

— 創(chuàng)建測試類:Application.class,這里引入一個新的ClassAnnotationConfigApplicationContext對象惭载。通過該類來加載Spring上下文信息旱函。
存在applicationContext.xml

public static void main(String[] args) {
        //所有配置文件
        args = new String[] {
                "classpath:spring/spring-servlet.xml",
                "classpath:spring/ApplicationContext.xml",
                "classpath:spring/mybatis-config.xml",
        };
        ApplicationContext actx = new ClassPathXmlApplicationContext(args);
        //得到類的實例
        HelloService helloService = (HelloService) actx.getBean("helloService");
        //調(diào)用類的方法
        helloService.sayHello();
        
    }

— 不使用applicationContext.xml文件獲取Spring上下文信息。

package cn.org.july.spring.service;

import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class Application {

    public static void main(String[] args) {
        // 獲取spring 容器描滔。
        AnnotationConfigApplicationContext configApplicationContext
                = new AnnotationConfigApplicationContext(ApplicationConfiguration.class);
        //從spring容器中獲取bean
        HelloService helloService = configApplicationContext.getBean(HelloService.class);
        //方法調(diào)用
        String value = helloService.sayHello();
        System.*out*.printf(value);
    }
}

項目結(jié)構(gòu)如下:


項目結(jié)構(gòu)

運行結(jié)果:


運行結(jié)果

以上是兩種啟動方式對比棒妨。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市含长,隨后出現(xiàn)的幾起案子券腔,更是在濱河造成了極大的恐慌,老刑警劉巖拘泞,帶你破解...
    沈念sama閱讀 212,718評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件纷纫,死亡現(xiàn)場離奇詭異,居然都是意外死亡陪腌,警方通過查閱死者的電腦和手機辱魁,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來偷厦,“玉大人商叹,你說我怎么就攤上這事≈黄茫” “怎么了剖笙?”我有些...
    開封第一講書人閱讀 158,207評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長请唱。 經(jīng)常有香客問我弥咪,道長,這世上最難降的妖魔是什么十绑? 我笑而不...
    開封第一講書人閱讀 56,755評論 1 284
  • 正文 為了忘掉前任聚至,我火速辦了婚禮,結(jié)果婚禮上本橙,老公的妹妹穿的比我還像新娘扳躬。我一直安慰自己,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,862評論 6 386
  • 文/花漫 我一把揭開白布贷币。 她就那樣靜靜地躺著击胜,像睡著了一般。 火紅的嫁衣襯著肌膚如雪役纹。 梳的紋絲不亂的頭發(fā)上偶摔,一...
    開封第一講書人閱讀 50,050評論 1 291
  • 那天,我揣著相機與錄音促脉,去河邊找鬼辰斋。 笑死,一個胖子當(dāng)著我的面吹牛瘸味,可吹牛的內(nèi)容都是我干的宫仗。 我是一名探鬼主播,決...
    沈念sama閱讀 39,136評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼旁仿,長吁一口氣:“原來是場噩夢啊……” “哼锰什!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起丁逝,我...
    開封第一講書人閱讀 37,882評論 0 268
  • 序言:老撾萬榮一對情侶失蹤汁胆,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后霜幼,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體嫩码,經(jīng)...
    沈念sama閱讀 44,330評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,651評論 2 327
  • 正文 我和宋清朗相戀三年罪既,在試婚紗的時候發(fā)現(xiàn)自己被綠了铸题。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,789評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡琢感,死狀恐怖丢间,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情驹针,我是刑警寧澤烘挫,帶...
    沈念sama閱讀 34,477評論 4 333
  • 正文 年R本政府宣布,位于F島的核電站柬甥,受9級特大地震影響饮六,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜苛蒲,卻給世界環(huán)境...
    茶點故事閱讀 40,135評論 3 317
  • 文/蒙蒙 一卤橄、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧臂外,春花似錦窟扑、人聲如沸喇颁。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽无牵。三九已至,卻和暖如春厂抖,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背克懊。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評論 1 267
  • 我被黑心中介騙來泰國打工忱辅, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人谭溉。 一個月前我還...
    沈念sama閱讀 46,598評論 2 362
  • 正文 我出身青樓墙懂,卻偏偏與公主長得像,于是被迫代替她去往敵國和親扮念。 傳聞我的和親對象是個殘疾皇子损搬,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,697評論 2 351

推薦閱讀更多精彩內(nèi)容