skip to Main Content

Why I see a blank page for the Keycloak's administration console? – Docker

I'm using a Dockerfile for create a custom image of Keycloak as follows: FROM quay.io/keycloak/keycloak:18.0.2 as builder ENV KC_HEALTH_ENABLED=true ENV KC_METRICS_ENABLED=true ENV KC_DB=postgres # Install custom providers RUN curl -sL https://github.com/aerogear/keycloak-metrics-spi/releases/download/2.5.3/keycloak-metrics-spi-2.5.3.jar -o /opt/keycloak/providers/keycloak-metrics-spi-2.5.3.jar RUN /opt/keycloak/bin/kc.sh build FROM quay.io/keycloak/keycloak:18.0.2 COPY --from=builder…

VIEW QUESTION

quarkus-redis-client – How to insert JSON?

How to insert JSON using quarkus-redis-client? I tried writing the json as a String, but I don't know if it's correct. @Singleton public class EmployeeService { @Inject RedisClient redisClient; public void insert(Employee employee) throws JsonProcessingException{ ObjectMapper mapper = new ObjectMapper();…

VIEW QUESTION
Back To Top
Search