springboot01

来源:https://www.cnblogs.com/rabbits-carrot/archive/2023/02/22/17146114.html
-Advertisement-
Play Games

springboot springboot簡化了配置文件的配置,常用的spring、springmvc的配置文件已經在springboot中配置好了。使得開發更專註業務邏輯的實現,提高開發效率。 1.1基於xml的配置 spring配置文件 <?xml version="1.0" encoding= ...


springboot

springboot簡化了配置文件的配置,常用的spring、springmvc的配置文件已經在springboot中配置好了。使得開發更專註業務邏輯的實現,提高開發效率。

1.1基於xml的配置

spring配置文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="myStudent" class="com.springboot.entity.Student">
        <property name="name" value="蔡劍波"/>
        <property name="age" value="20"/>
        <property name="sex" value="女"/>
    </bean>
</beans>
public class Student {

    private String name;
    private String sex;
    private int age;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getSex() {
        return sex;
    }

    public void setSex(String sex) {
        this.sex = sex;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    @Override
    public String toString() {
        return "Student{" +
                "name='" + name + '\'' +
                ", sex='" + sex + '\'' +
                ", age=" + age +
                '}';
    }
}

測試類:

public class TestXmlConfig {

    @Test
    public void test01(){
        String config = "beans.xml";
        ApplicationContext ctx = new ClassPathXmlApplicationContext(config);
        // myStudent 是xml配置文件中配置的bean id屬性值。
        Student myStudent = (Student) ctx.getBean("myStudent");
        System.out.println("獲取的對象為: "+ myStudent);

    }
}
1.2 JavaConfig

​ javaConfig : 使用java類代替xml配置文件,是spring 提供的一種基於純java類的配置方式。在這個配置類中@Bean創建java對象,並把對象註入到容器中。

需要使用2個註解:

  1. @Configuration: 這個註解作用在類上面,表示當前作用的類被當作配置文件使用。
  2. @Bean: 作用於方法上,表示聲明對象,把對象註入到容器中。

創建配置類 MyConfig

import com.springboot.entity.Student;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;


@Configuration
public class MyConfig {
    /**
    *	@Bean: 註解
    	屬性: name 相當於 bean標簽中的id	
    	註解沒有標註name屬性值的話,預設就是方法的名稱 getStudent
    */
    
    @Bean
    public Student getStudent(){
        Student student = new Student();
        student.setAge(18);
        student.setName("王五");
        student.setSex("男");
        return student;
    }
}

測試類

import com.springboot.config.MyConfig;
import com.springboot.entity.Student;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

@Test
    public void test02(){
        ApplicationContext ctx = new AnnotationConfigApplicationContext(MyConfig.class);
		// @Bean 註解沒有指出name屬性值,預設是方法名稱 getStudent
        Student myStudent = (Student) ctx.getBean("getStudent");
        System.out.println("獲取的對象為: "+ myStudent);

    }

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 問題 利用 map() 把字元串數組映射成整數數組 ["1", "2", "3"].map(parseInt); 是不是覺得結果應該返回 [1, 2, 3]? 但是事與願違,結果是: Output: [1, NaN, NaN] 為什麼呢? 回顧 parseInt parseInt() 函數解析一個字 ...
  • title: Hbuilder項目轉vue-cli項目 date: 2023-02-22 10:26:33 category: 工作 技能提升 cover: https://s1.ax1x.com/2022/11/23/z8L8PS.jpg tags: uniapp description: Hbu ...
  • 第一等級:代表 內聯樣式,如 style="",權值為 1,0,0,0; 第二等級:代表 ID選擇器,如 #id="", 權值為 0,1,0,0; 第三等級:代表 calss | 偽類 | 屬性 選擇器,如 .class | :hover,:link,:target | [type], 權值 0,0 ...
  • 設計意圖的傳達是架構可視化關註的重要維度,在技術方案評審過程中不可避免的會出現各種各樣的架構圖或設計圖,這些圖形化表述在設計意圖傳達效果層面表現不一,本文從圖形化的視角為軟體架構圖的評審關註點提供了參考。 ...
  • 1. 編程語言 1.1. 仍然是一門語言 1.1.1. 以最清晰、最容易理解的方式傳遞信息 1.2. 代碼的易讀性和易理解性在軟體中的重要性甚至更勝一籌 2. 領域特定語言DSL 2.1. 為瞭解決某個特定業務領域問題的一種自定義語言 2.1.1. 一種小型語言 2.1.2. 大多都不通用 2.1. ...
  • 在使用Ruoyi管理系統中出現這個問題 Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'xxx_time' in 'where clause' 因為對應報錯的SQL中沒有該欄位,前端也 ...
  • 安裝apk 安裝APK(filePath) lua源碼 function 安裝APK(filePath) local intent = Intent(Intent.ACTION_VIEW); intent.addCategory("android.intent.category.DEFAULT"); ...
  • VL11 4位數值比較器電路 根據題目真值表把情況全部列出來,純體力活。 `timescale 1ns/1ns module comparator_4( input [3:0] A , input [3:0] B , output wire Y2 , //A>B output wire Y1 , / ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...