@Value: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=External= * https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/annotation/Value.html =Internal= * Spring Dependency Injec...") |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 2: | Line 2: | ||
* https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/annotation/Value.html | * https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/annotation/Value.html | ||
* https://www.baeldung.com/spring-value-annotation | |||
=Internal= | =Internal= | ||
* [[Spring Dependency Injection and Inversion of Control Container Concepts#@Value|Spring Dependency Injection and Inversion of Control Container Concepts]] | * [[Spring Dependency Injection and Inversion of Control Container Concepts#@Value|Spring Dependency Injection and Inversion of Control Container Concepts]] | ||
=Overview= | |||
<syntaxhighlight lang='java'> | |||
@Value("${accountServiceURL ?:http://example.com/account/}") | |||
private String accountServiceURL; | |||
</syntaxhighlight> |
Latest revision as of 22:30, 8 November 2018
External
- https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/annotation/Value.html
- https://www.baeldung.com/spring-value-annotation
Internal
Overview
@Value("${accountServiceURL ?:http://example.com/account/}")
private String accountServiceURL;