move SwaggerUI from management-port:/actuator to server-port:/
This commit is contained in:
parent
57d5d32ab7
commit
ab0e1f604b
@ -132,7 +132,7 @@ Also try for example 'admin@xxx.example.com' or 'unknown@example.org'.
|
|||||||
|
|
||||||
If you want a formatted JSON output, you can pipe the result to `jq` or similar.
|
If you want a formatted JSON output, you can pipe the result to `jq` or similar.
|
||||||
|
|
||||||
And to see the full, currently implemented, API, open http://localhost:8081/actuator/swagger-ui/index.html (uses management-port and thus bypasses authentication).
|
And to see the full, currently implemented, API, open http://localhost:8080/swagger-ui/index.html (on same port as the API to avoid CORS problems).
|
||||||
|
|
||||||
If you still need to install some of these tools, find some hints in the next chapters.
|
If you still need to install some of these tools, find some hints in the next chapters.
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ management:
|
|||||||
# HOWTO: view the effective application configuration properties:
|
# HOWTO: view the effective application configuration properties:
|
||||||
# http://localhost:8081/actuator/configprops
|
# http://localhost:8081/actuator/configprops
|
||||||
|
|
||||||
include: info, health, metrics, metric-links, mappings, openapi, swaggerui, configprops, env
|
include: info, health, metrics, metric-links, mappings, openapi, configprops, env
|
||||||
endpoint:
|
endpoint:
|
||||||
env:
|
env:
|
||||||
# TODO.spec: check this, maybe set to when_authorized?
|
# TODO.spec: check this, maybe set to when_authorized?
|
||||||
@ -37,6 +37,10 @@ spring:
|
|||||||
url: ${HSADMINNG_POSTGRES_JDBC_URL}
|
url: ${HSADMINNG_POSTGRES_JDBC_URL}
|
||||||
username: postgres
|
username: postgres
|
||||||
|
|
||||||
|
data:
|
||||||
|
rest:
|
||||||
|
detection-strategy: annotated
|
||||||
|
|
||||||
sql:
|
sql:
|
||||||
init:
|
init:
|
||||||
mode: never
|
mode: never
|
||||||
@ -51,7 +55,8 @@ spring:
|
|||||||
|
|
||||||
# keep this in sync with test/.../application.yml
|
# keep this in sync with test/.../application.yml
|
||||||
springdoc:
|
springdoc:
|
||||||
use-management-port: true
|
# SwaggerUI must run on the same port as the API itself, otherwise CORS will block accessing the API
|
||||||
|
use-management-port: false
|
||||||
|
|
||||||
hsadminng:
|
hsadminng:
|
||||||
postgres:
|
postgres:
|
||||||
|
@ -84,14 +84,14 @@ class WebSecurityConfigIntegrationTest {
|
|||||||
@Test
|
@Test
|
||||||
public void shouldSupportSwaggerUi() {
|
public void shouldSupportSwaggerUi() {
|
||||||
final var result = this.restTemplate.getForEntity(
|
final var result = this.restTemplate.getForEntity(
|
||||||
"http://localhost:" + this.managementPort + "/actuator/swagger-ui/index.html", String.class);
|
"http://localhost:" + this.managementPort + "/swagger-ui/index.html", String.class);
|
||||||
assertThat(result.getStatusCode()).isEqualTo(HttpStatus.OK);
|
assertThat(result.getStatusCode()).isEqualTo(HttpStatus.OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void shouldSupportApiDocs() {
|
public void shouldSupportApiDocs() {
|
||||||
final var result = this.restTemplate.getForEntity(
|
final var result = this.restTemplate.getForEntity(
|
||||||
"http://localhost:" + this.managementPort + "/actuator/v3/api-docs/swagger-config", String.class);
|
"http://localhost:" + this.managementPort + "/v3/api-docs/swagger-config", String.class);
|
||||||
assertThat(result.getStatusCode()).isEqualTo(HttpStatus.NOT_FOUND); // permitted but not configured
|
assertThat(result.getStatusCode()).isEqualTo(HttpStatus.NOT_FOUND); // permitted but not configured
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -109,5 +109,4 @@ class WebSecurityConfigIntegrationTest {
|
|||||||
"http://localhost:" + this.managementPort + "/actuator/metrics", Map.class);
|
"http://localhost:" + this.managementPort + "/actuator/metrics", Map.class);
|
||||||
assertThat(result.getStatusCode()).isEqualTo(HttpStatus.OK);
|
assertThat(result.getStatusCode()).isEqualTo(HttpStatus.OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -41,7 +41,9 @@ spring:
|
|||||||
|
|
||||||
# keep this in sync with main/.../application.yml
|
# keep this in sync with main/.../application.yml
|
||||||
springdoc:
|
springdoc:
|
||||||
use-management-port: true
|
# SwaggerUI must run on the same port as the API itself, otherwise CORS will block accessing the API
|
||||||
|
use-management-port: false
|
||||||
|
|
||||||
|
|
||||||
logging:
|
logging:
|
||||||
level:
|
level:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user