Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/radarsh/spring-cloud-config-example
https://github.com/radarsh/spring-cloud-config-example
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/radarsh/spring-cloud-config-example
- Owner: radarsh
- Created: 2015-08-26T16:03:08.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-26T16:49:34.000Z (about 9 years ago)
- Last Synced: 2023-03-22T14:42:32.255Z (over 1 year ago)
- Language: Groovy
- Size: 184 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Test project to reproduce issue spring-cloud/spring-cloud-config#217
### How to setup
1. Install RabbitMQ
2. Run config-server```
cd config-server
./gradlew clean bootrun
```
3. Run sample-app```
cd sample-app
./gradlew clean bootrun
```
4. Test
```
$ curl -s -X GET http://localhost:8080/sample/test | python -m json.tool
{
"error": "Internal Server Error",
"exception": "org.springframework.context.NoSuchMessageException",
"message": "No message found under code 'my.message' for locale 'en'.",
"path": "/sample/test",
"status": 500,
"timestamp": 1440606341144
}
```