diff options
Diffstat (limited to 'components/aai-resources/resources/config')
-rw-r--r-- | components/aai-resources/resources/config/application.properties | 6 | ||||
-rw-r--r-- | components/aai-resources/resources/config/logback.xml | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/components/aai-resources/resources/config/application.properties b/components/aai-resources/resources/config/application.properties index 7237c56..d0a9c14 100644 --- a/components/aai-resources/resources/config/application.properties +++ b/components/aai-resources/resources/config/application.properties @@ -21,8 +21,10 @@ info.build.version=1.3.0 spring.application.name=aai-resources spring.jersey.type=filter -server.contextPath=/ -spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration +spring.main.allow-bean-definition-overriding=true +server.servlet.context-path=/ + +spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration,org.keycloak.adapters.springboot.KeycloakAutoConfiguration,org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration spring.profiles.active={{ .Values.global.config.profiles.active }} spring.jersey.application-path=${schema.uri.base.path} diff --git a/components/aai-resources/resources/config/logback.xml b/components/aai-resources/resources/config/logback.xml index ba06414..f24e86d 100644 --- a/components/aai-resources/resources/config/logback.xml +++ b/components/aai-resources/resources/config/logback.xml @@ -306,6 +306,7 @@ </logger> <logger name="org.onap.aai.aaf.auth" level="DEBUG" additivity="false"> <appender-ref ref="asyncAUTH" /> + <appender-ref ref="STDOUT" /> </logger> <logger name="org.onap.aai.aailog.logs.AaiScheduledTaskAuditLog" level="INFO"> <appender-ref ref="asyncAUDIT"/> @@ -324,6 +325,7 @@ </logger> <logger name="org.onap.aai.interceptors.post" level="DEBUG" additivity="false"> <appender-ref ref="asynctranslog" /> + <appender-ref ref="STDOUT" /> </logger> <logger name="org.onap.aai.dmaap" level="DEBUG" additivity="false"> |