Spring Boot 菜鳥教程 28 多配置檔案

2021-07-26 11:56:21 字數 1994 閱讀 3309

src="" scrolling="0" width="110" height="20">開發過程中可能會有如下需求:開發和部署的配置資訊可能不同,常規的方式就是在配置檔案裡面先寫好開發配置,在部署的時候再去修改這些配置,這樣可能會出現很多問題,比如使用者名稱、密碼忘記了修改或者改錯了等問題。

/** *@author je哥

*@email [email protected]

*@description:

*/@runwith(springrunner.class)

@springboottest

public

class

multipartpropertiestest1 ")

private string username;

@value("$")

private string password;

@test

public

void

config()

}

package com.jege.spring.boot;

import org.junit.test;

import org.junit.runner.runwith;

import org.springframework.beans.factory.annotation.value;

import org.springframework.boot.test.context.springboottest;

import org.springframework.test.context.activeprofiles;

import org.springframework.test.context.junit4.springrunner;

/** *@author je哥

*@email [email protected]

*@description:

*/@runwith(springrunner.class)

@springboottest

@activeprofiles("dev")

public

class

multipartpropertiestest2 ")

private string username;

@value("$")

private string password;

@test

public

void

config()

}

如果覺得我的文章或者**對您有幫助,可以請我喝杯咖啡。您的支援將鼓勵我繼續創作!謝謝!

Linux學習 菜鳥教程 2

linux 系統目錄 bin bin是binary的縮寫,這個目錄存放著最經常使用的命令。boot 存放啟動linux時的一些核心檔案,包括一些連線檔案以及映象檔案。dev dev是device的縮寫,該目錄存放linux的外部裝置,在linux中訪問裝置和訪問檔案的方式是相同的。etc 存放系統管...

菜鳥教程(面對物件)2

一 繼承 每個類都有自己的資料成員和函式,但有些類之間的資料成員和函式相同,直接指定新建的類繼承了乙個已有的類即可。已有的類稱為基類,新建的類稱為派生類。include using namespace std 基類shape class shape void setheight int h prot...

Spring Boot 菜鳥教程 21 分布式會話

src scrolling 0 width 110 height 20 下面 將演示基於spring session的實現,這個是基於redis快取的session共享。如果配置的redis的是自己在維護,那很方便就可以實現了。spring session官方文件 新增依賴 只需要在pom檔案新增以...