java-tutorials/spring-core-3/static-value-injection/README.md

23 lines
271 B
Markdown
Raw Normal View History

# Inject a value to a static field
## How to run
```sh
mvn clean install
mvn spring-boot:run
```
## Request
**GET**
http://localhost:8080/properties
## Response
```json
[
"Inject a value to a static field",
"Inject a value to a static field",
null
]
```