애플리케이션 속성 외부화
`application.properties` 및 `application.yml` 파일을 사용하여 애플리케이션을 구성하고 프로필을 관리합니다.
애플리케이션 속성 외부화은(는) CoddyKit의 무료 Spring Boot 4 Complete Guide 강의입니다. 이것은 4개 중 3번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Spring Boot 4 Complete Guide 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Spring Boot 4 Complete Guide 강의에는 총 4개의 강의가 포함되어 있습니다.
이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.
Keep Config Flexible
Imagine building an app for different environments like development, testing, and production. Each might need unique database credentials, API keys, or server ports.
Hardcoding these values directly into your code is a bad practice. It makes your app inflexible and difficult to manage.
Externalizing configuration means storing these changeable values outside your main application code, allowing you to modify them without rebuilding your app.
application.properties
Spring Boot makes external configuration easy. The most common way is using the application.properties file, located in your src/main/resources folder.
It uses a simple key-value pair format, where each property is on a new line:
server.port=8080spring.datasource.url=jdbc:h2:mem:testdbmy.custom.greeting=Hello CoddyKit!
These values can then be injected into your Spring components.
Injecting with @Value
To use an externalized property in your Java code, Spring provides the @Value annotation.
You can apply @Value to fields, constructor parameters, or method parameters. It reads the value associated with a specific key from your properties files.
The syntax is @Value("${property.key}"). If the property is not found, you can provide a default value like @Value("${property.key:Default Value}").
@Value in Action
Let's see how @Value works. First, we'll create an application.properties file.
src/main/resources/application.properties:
app.message=Welcome to CoddyKit!Now, run this Spring Boot application. It will inject the property and print it on startup.
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Component;
@SpringBootApplication
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
@Component
class MessagePrinter implements CommandLineRunner {
@Value("${app.message}")
private String message;
@Override
public void run(String... args) throws Exception {
System.out.println("Application Message: " + message);
}
}Structured YAML Files
Another popular format for external configuration is YAML (YAML Ain't Markup Language), typically in an application.yml file.
YAML offers a more human-readable, hierarchical structure compared to the flat key-value pairs of .properties files. It uses indentation to define nested properties.
- Readability: Easier to grasp complex configurations.
- Hierarchy: Naturally groups related properties.
- Less Repetition: Avoids repeating common prefixes.
YAML for Clarity
Here's how the same message property from before would look in application.yml:
src/main/resources/application.yml:
app:
message: Welcome to CoddyKit! (YAML)The Java code remains exactly the same as Spring Boot automatically supports both formats. Run this to see it in action.
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Component;
@SpringBootApplication
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
@Component
class MessagePrinter implements CommandLineRunner {
@Value("${app.message}")
private String message;
@Override
public void run(String... args) throws Exception {
System.out.println("Application Message: " + message);
}
}Who Wins? Precedence
What if you have both application.properties and application.yml in your project? Which one takes precedence?
Spring Boot has a specific order for loading configuration sources. Generally, properties defined in application.properties take precedence over those in application.yml when both exist and define the same key.
This allows you to override default values with more specific ones when needed, without changing the original files.
Adapting with Profiles
Spring Profiles provide a way to segregate parts of your application configuration and make it available only in certain environments.
For example, you might have different database settings for your development, test, and production environments. Instead of manually changing configuration files, you can define profiles.
When a specific profile is active, only the beans and configuration associated with that profile are loaded.
Tailoring for Environments
To define profile-specific properties, you create additional configuration files following a specific naming convention:
application-{profile}.propertiesapplication-{profile}.yml
For example:
application-dev.propertiesfor development settings.application-prod.ymlfor production settings.
These files contain properties that apply only when their corresponding profile is active.
Switching Profiles
You can activate a Spring profile in several ways:
- JVM System Property: Pass
-Dspring.profiles.active=devwhen running your app. - Environment Variable: Set
SPRING_PROFILES_ACTIVE=prod. - Inside
application.properties/.yml: Setspring.profiles.active=test.
It's common to use JVM arguments or environment variables for production deployments, keeping your main application.properties clean.
Quick Check: Config
You have an application.properties file with app.environment=development. You also have an application-prod.properties file with app.environment=production.
How would you activate the prod profile to ensure app.environment resolves to production?
Config Mastery Recap
Great job! You've learned how to externalize application properties in Spring Boot, making your applications more flexible and easier to manage across different environments.
- We explored
application.propertiesfor simple key-value pairs. - We saw
application.ymlfor structured, hierarchical configuration. - You learned to inject properties into your code using the
@Valueannotation. - Finally, we covered Spring Profiles to tailor configurations for specific environments and how to activate them.
This knowledge is crucial for building robust and adaptable Spring Boot applications!
자주 묻는 질문
“애플리케이션 속성 외부화” 강의는 무료인가요?
네 — “애플리케이션 속성 외부화” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Spring Boot 4 Complete Guide 강의 전체를 잠금 해제할 수 있습니다. Spring Boot 4 Complete Guide 강의에는 총 4개의 강의가 포함되어 있습니다.
“애플리케이션 속성 외부화”에서 뭘 배우나요?
`application.properties` 및 `application.yml` 파일을 사용하여 애플리케이션을 구성하고 프로필을 관리합니다. 브라우저에서 직접 실행하는 실습 코드로 Spring Boot 4 Complete Guide을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.
Spring Boot 4 Complete Guide을(를) 시작하는 데 경험이 필요한가요?
사전 경험은 필요하지 않습니다. CoddyKit의 Spring Boot 4 Complete Guide은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 3번째 강의입니다.
“애플리케이션 속성 외부화” 강의는 얼마나 걸리나요?
대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.
이 Spring Boot 4 Complete Guide 강의에서 코드를 작성하고 실행할 수 있나요?
네. 모든 Spring Boot 4 Complete Guide 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.
이 강의의 모든 강의
- Spring IoC 컨테이너 이해하기
- 의존성 주입 실습
- 애플리케이션 속성 외부화
- 빈 범위와 생명주기 관리