Marcin Grzejszczak
3e069b41af
Added symbolic link of index.adoc
2019-07-29 14:43:19 +02:00
hectorespert
2e8a5833a9
Fix GH-127 add support for HATEOAS ( #140 )
...
* Fix gh-127, HATEOAS support
* Fix gh-127, HATEOAS support tests
* Add DefaultCurieProvider for HAL Jackson http converter
2019-06-13 20:04:25 -04:00
Jánoky László Viktor
3a60921794
Overridable QueryMapEncoder ( #183 )
...
Added the possibility to override the default QueryMapEncoder by defining a custom one in the ApplicationContext.
2019-06-03 11:12:52 -04:00
Olga Maciaszek-Sharma
50c799a4a0
Add sagan .adoc files.
2019-04-30 15:38:42 +02:00
Spring Operator
a81c53a55c
URL Cleanup
...
This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener).
# Fixed URLs
## Fixed But Review Recommended
These URLs were fixed, but the https status was not OK. However, the https status was the same as the http request or http redirected to an https URL, so they were migrated. Your review is recommended.
* [ ] http://foo.com:8000/ (ConnectTimeoutException) with 2 occurrences migrated to:
https://foo.com:8000/ ([https](https://foo.com:8000/ ) result ConnectTimeoutException).
* [ ] http://foo.com:8000/abc/bcd.json (ConnectTimeoutException) with 1 occurrences migrated to:
https://foo.com:8000/abc/bcd.json ([https](https://foo.com:8000/abc/bcd.json ) result ConnectTimeoutException).
* [ ] http://PROD-SVC (UnknownHostException) with 2 occurrences migrated to:
https://PROD-SVC ([https](https://PROD-SVC ) result UnknownHostException).
* [ ] http://Url/ (UnknownHostException) with 1 occurrences migrated to:
https://Url/ ([https](https://Url/ ) result UnknownHostException).
* [ ] http://bad_hostname (UnknownHostException) with 1 occurrences migrated to:
https://bad_hostname ([https](https://bad_hostname ) result UnknownHostException).
* [ ] http://bar (UnknownHostException) with 1 occurrences migrated to:
https://bar ([https](https://bar ) result UnknownHostException).
* [ ] http://bar/ (UnknownHostException) with 1 occurrences migrated to:
https://bar/ ([https](https://bar/ ) result UnknownHostException).
* [ ] http://compose.docker.io/ (UnknownHostException) with 1 occurrences migrated to:
https://compose.docker.io/ ([https](https://compose.docker.io/ ) result UnknownHostException).
* [ ] http://foo (UnknownHostException) with 19 occurrences migrated to:
https://foo ([https](https://foo ) result UnknownHostException).
* [ ] http://foo/ (UnknownHostException) with 4 occurrences migrated to:
https://foo/ ([https](https://foo/ ) result UnknownHostException).
* [ ] http://foo/?name=%7bcookie (UnknownHostException) with 1 occurrences migrated to:
https://foo/?name=%7bcookie ([https](https://foo/?name=%7bcookie ) result UnknownHostException).
* [ ] http://foo:7777/ (UnknownHostException) with 1 occurrences migrated to:
https://foo:7777/ ([https](https://foo:7777/ ) result UnknownHostException).
* [ ] http://good-name (UnknownHostException) with 2 occurrences migrated to:
https://good-name ([https](https://good-name ) result UnknownHostException).
* [ ] http://listener (UnknownHostException) with 6 occurrences migrated to:
https://listener ([https](https://listener ) result UnknownHostException).
* [ ] http://tp/abc/bcd.json (UnknownHostException) with 1 occurrences migrated to:
https://tp/abc/bcd.json ([https](https://tp/abc/bcd.json ) result UnknownHostException).
* [ ] http://www.puppycrawl.com/dtds/suppressions_1_1.dtd (404) with 1 occurrences migrated to:
https://www.puppycrawl.com/dtds/suppressions_1_1.dtd ([https](https://www.puppycrawl.com/dtds/suppressions_1_1.dtd ) result 404).
## Fixed Success
These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended.
* [ ] http://EditorConfig.org with 1 occurrences migrated to:
https://EditorConfig.org ([https](https://EditorConfig.org ) result 200).
* [ ] http://asciidoctor.org with 1 occurrences migrated to:
https://asciidoctor.org ([https](https://asciidoctor.org ) result 200).
* [ ] http://example.com with 2 occurrences migrated to:
https://example.com ([https](https://example.com ) result 200).
* [ ] http://github.com/ with 1 occurrences migrated to:
https://github.com/ ([https](https://github.com/ ) result 200).
* [ ] http://projects.spring.io/spring-cloud/ with 1 occurrences migrated to:
https://projects.spring.io/spring-cloud/ ([https](https://projects.spring.io/spring-cloud/ ) result 200).
* [ ] http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html with 2 occurrences migrated to:
https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html ([https](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html ) result 200).
* [ ] http://plugins.jetbrains.com/plugin/6546 with 2 occurrences migrated to:
https://plugins.jetbrains.com/plugin/6546 ([https](https://plugins.jetbrains.com/plugin/6546 ) result 301).
* [ ] http://raw.github.com/ with 1 occurrences migrated to:
https://raw.github.com/ ([https](https://raw.github.com/ ) result 301).
* [ ] http://service.com with 1 occurrences migrated to:
https://service.com ([https](https://service.com ) result 301).
* [ ] http://eclipse.org with 1 occurrences migrated to:
https://eclipse.org ([https](https://eclipse.org ) result 302).
* [ ] http://eclipse.org/m2e/ with 2 occurrences migrated to:
https://eclipse.org/m2e/ ([https](https://eclipse.org/m2e/ ) result 302).
* [ ] http://www.springsource.com/developer/sts with 1 occurrences migrated to:
https://www.springsource.com/developer/sts ([https](https://www.springsource.com/developer/sts ) result 302).
# Ignored
These URLs were intentionally ignored.
* http://localhost with 11 occurrences
* http://localhost:8080/ with 1 occurrences
* http://localhost:8081/ with 1 occurrences
2019-03-20 15:47:23 -05:00
Spring Operator
115e87b6ce
URL Cleanup ( #144 )
...
This commit updates URLs to prefer the https protocol. Redirects are not followed to avoid accidentally expanding intentionally shortened URLs (i.e. if using a URL shortener).
# Fixed URLs
## Fixed Success
These URLs were switched to an https URL with a 2xx status. While the status was successful, your review is still recommended.
* http://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch migrated to:
https://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch ([https](https://stackoverflow.com/questions/1593051/how-to-programmatically-determine-the-current-checked-out-git-branch ) result 200).
* http://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin migrated to:
https://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin ([https](https://stackoverflow.com/questions/29300806/a-bash-script-to-check-if-a-string-is-present-in-a-comma-separated-list-of-strin ) result 200).
* http://www.apache.org/licenses/LICENSE-2.0 migrated to:
https://www.apache.org/licenses/LICENSE-2.0 ([https](https://www.apache.org/licenses/LICENSE-2.0 ) result 200).
# Ignored
These URLs were intentionally ignored.
* http://maven.apache.org/POM/4.0.0
* http://maven.apache.org/xsd/maven-4.0.0.xsd
* http://www.w3.org/2001/XMLSchema-instance
2019-03-11 19:08:45 -04:00
Piotr Smolarski
e227808b9d
Support Multiple Clients Using The Same Service ( #90 )
...
* Use serviceId as url target if present.
Fixes gh-67
* Code review fixes and improvements
* Fix test
* Add contextId to override bean name of feign client and its configuration.
* Add documentation
* Add contextId example to documentation
2019-01-07 09:35:48 -05:00
Ryan Baxter
b00abe7b68
Fixing docs
2018-12-12 12:22:46 -05:00
Ryan Baxter
f267c2255b
Merge remote-tracking branch 'origin/2.0.x'
2018-12-11 09:12:30 -05:00
Momo
d46fb3a92e
Add support for feign's QueryMap annotation for Object mapping ( #79 )
...
* Add QueryMapParameterProcessor
* Add license to QueryMapParameterProcessor
* Use SpringQueryMap instead of QueryMap. Add test.
* Add documentation and license to SpringQueryMap
* SpringQueryMap docs
* Fix typos
2018-12-06 21:26:36 +01:00
Ryan Baxter
af094d0bfc
Remove rogue content in docs
2018-10-02 16:41:14 -04:00
Rafael Renan Pacheco
569628689b
Format "Creating Feign Clients Manually" snippet ( #29 )
2018-05-29 11:09:05 -04:00
Gerasimov Gennady
18111801d3
Misspelling fix according to https://github.com/spring-cloud/spring-cloud-openfeign/issues/24 ( #25 )
2018-05-24 11:41:38 -04:00
Ryan Baxter
537599fad2
Adding codacy badge
2018-03-09 07:53:48 -05:00
Ryan Baxter
1fa53b8bf9
Added codecov link to readme
2018-03-09 07:31:37 -05:00
Ryan Baxter
30d9245821
Updated from netflix
2018-02-20 15:34:38 -05:00
Ryan Baxter
8138dbd792
Adding circleci badge
2018-02-06 20:35:43 -05:00
Ryan Baxter
bc9741591b
Documentation updates
2018-02-06 20:18:41 -05:00
Ryan Baxter
217443048f
openfeign project
2018-02-05 20:25:44 -05:00
Andreas Evers
4c181c9671
Small fix for wrong routes details endpoint ( #2706 )
2018-02-05 07:49:40 -05:00
Ryan Baxter
6bb5830220
Remove deprecated ZuulFallbackProvider in favor of FallbackProvider. Add route parameter to fallbackResponse. Fixes #2655 ( #2664 )
2018-01-18 13:40:43 -05:00
reillylm
06672462ab
fix zuul intro typo ( #2658 )
2018-01-17 14:37:35 -05:00
Guillaume Berche
e4870c94f2
Refine Feign manual client doc ( #2627 )
2018-01-11 07:51:26 -05:00
周立
04560724d3
fix wrong sentence. ( #2582 )
...
* fix wrong sentence.
2018-01-02 14:06:34 -05:00
Silas Mahler
0859350715
Fix typo in Turbine example url ( #2568 )
2017-12-20 17:59:09 -05:00
周立
1210db9a15
Change spring-cloud-starter-hystrix-netflix-dashboard to spring-cloud-starter-netflix-hystrix-dashboard ( #2560 )
...
Change spring-cloud-starter-hystrix-netflix-dashboard to spring-cloud-starter-netflix-hystrix-dashboard
2017-12-18 09:06:55 -05:00
Ryan Baxter
3e90724505
Switched branch in docs and merged changes forward
2017-12-03 15:22:24 -08:00
Ryan Baxter
efb91874f8
Correcting image links. Fixes #2487
2017-12-03 15:06:48 -08:00
Spencer Gibb
eec4c8cf85
remove empty files
2017-12-01 21:46:27 -05:00
Daniel Qian
d38f390b95
fix documentation typo ( #2488 )
2017-12-01 16:30:46 -05:00
Spencer Gibb
e3cdb76373
Revert "fix zuul filters package url in Edgware ( #2493 )" ( #2495 )
...
This reverts commit d5e3cad80e .
2017-11-30 21:26:21 -05:00
周立
d5e3cad80e
fix zuul filters package url in Edgware ( #2493 )
...
fix zuul filters package url in Edgware
2017-11-30 21:23:08 -05:00
周立
2287e0caf2
fix zuul filters package url in Edgware ( #2489 )
...
fix zuul filters package url in Edgware
2017-11-30 10:48:35 -05:00
saga
14c1d461b7
Improve the document ( #2474 )
...
Replace @Configuration, @ComponentScan, @EnableAutoConfiguration with @springbootapplication.
2017-11-28 06:30:41 -05:00
Spencer Gibb
ef755f3ad3
Merge branch 'master' into 2.0.x
2017-11-27 22:52:09 -05:00
saga
736a3e4610
Format indent adjustment ( #2468 )
...
Format indent adjustment
2017-11-26 07:32:33 -05:00
Spencer Gibb
946a46f2b1
Merge branch 'master' into 2.0.x
2017-11-21 19:27:49 -05:00
Yongsung Yoon
60c4e1b007
Add support loadBalancerKey in RibbonRoutingFilter of Zuul for Canary test ( #2439 )
...
* Add support loadBalancerKey in RibbonRoutingFilter
* Add documentation about how to provide a loadBalancerKey to Ribbon
* Add integrationtest for RibbonRoutingFilter's loadBalancerKey support
2017-11-20 06:28:23 -05:00
Ryan Baxter
6e3b4fdd7b
Adds backoff policies when retrying requests ( #2436 )
...
* Adds backoff policies when retrying requests. Fixes #2195
* fixing final variable
2017-11-16 20:11:55 -05:00
Ryan Baxter
89441ac126
Added zuul timeout documentation. Fixes #2201
2017-11-10 15:54:05 -05:00
Ryan Baxter
d9f7842aec
Fix HystrixClientFallbackFactory implementation in docs. Fixes #2428
2017-11-08 11:00:51 -05:00
Nastya Smirnova
ba24811356
Report jmx and management ports to Eureka metadata map ( #1830 )
...
Follows: https://github.com/spring-cloud/spring-cloud-netflix/pull/1317
2017-11-07 13:42:23 -05:00
Spencer Gibb
ef508b4223
Merge branch 'master' into 2.0.x
2017-10-23 21:22:20 -04:00
mg
bd2473a7bf
Update spring-cloud-netflix.adoc
...
Update documentation to reflect https://github.com/spring-cloud/spring-cloud-netflix/issues/1048
2017-10-23 14:18:40 -04:00
Gregor Zurowski
de16cb71f1
Add new filters actuator endpoint ( #2244 )
...
* Add new Zuul filters endpoint and refactor routes endpoint
* Refactor FiltersEndpoint
- Extend from AbstractEndpoint and simplify code
- Move tests classes into package endpoint
- Remove usage of Lombok
* Conditionally enable Zuul routes and filters endpoints
* Provide FilterRegistry to FiltersEndpoint via constructor
2017-10-23 14:08:00 -04:00
Nastya Smirnova
ffc431753b
Create TurbineClustersProvider
...
Extract separate class TurbineClustersProvider to be able to provide custom solution for retrieving configured clusters (#2219 )
2017-10-20 21:46:29 -04:00
Spencer Gibb
d76416f03c
Merge branch 'master' into 2.0.x
2017-10-04 19:35:34 -04:00
Alex Sartan
7f97a61ed5
Fix minor grammar issue in Zuul doc ( #2336 )
2017-10-01 13:25:32 -04:00
Spencer Gibb
39b1c0fe0d
Update routes endpoint to new endpoint infrastructure.
...
fixes gh-2318
2017-09-29 16:30:46 -04:00
Spencer Gibb
49fdcae8c2
Compile fixes for boot 2
2017-09-25 17:20:58 -04:00