diff options
author | LaMont, William (wl2432) <wl2432@us.att.com> | 2018-08-31 10:56:17 -0400 |
---|---|---|
committer | LaMont, William (wl2432) <wl2432@us.att.com> | 2018-08-31 11:10:32 -0400 |
commit | 571d6f65cf5e0e5334956dbe11730fd47820b947 (patch) | |
tree | ca23e0f64ca2968b4a933cb6a0bb0b4781bc24e8 /src/main/resources/application.properties | |
parent | 6ed92ea7526678f245a9123d2ee97a6a9e2c3bf1 (diff) |
initial code for cacher
Issue-ID: AAI-1473
Change-Id: I8babe91e79f5c1e6e97b0f5b6dc827b8c5caec80
Signed-off-by: LaMont, William (wl2432) <wl2432@att.com>
Diffstat (limited to 'src/main/resources/application.properties')
-rw-r--r-- | src/main/resources/application.properties | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..cd51b92 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1,57 @@ +info.build.artifact=@project.artifactId@ +info.build.name=@project.name@ +info.build.description=@project.description@ +info.build.version=@project.version@ + +spring.application.name=aai-cacher +spring.jersey.type=filter +spring.mvc.urls=swagger,docs,prometheus + + +server.contextPath=/ +spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration + +spring.profiles.active=production,one-way-ssl + +#The max number of active threads in this pool +server.tomcat.max-threads=200 +#The minimum number of threads always kept alive +server.tomcat.min-Spare-Threads=25 +#The number of milliseconds before an idle thread shutsdown, unless the number of active threads are less or equal to minSpareThreads +server.tomcat.max-idle-time=60000 + + +#Add this properties only if you want to change the URL, AJSC Framework interceptors will intercept +#com.att.ajsc.common.interceptors.PreInterceptor.url=/** +#com.att.ajsc.common.interceptors.PostInterceptor.url=/** + +#Servlet context parameters +server.context_parameters.p-name=value #context parameter with p-name as key and value as value. +kubernetes.namespace=org-onap-aai + +#Dont override +archetype.version=6.3.3.8 +archetype.name=sdk-java-jersey-archetype + +server.local.startpath=src/main/resources/ +server.basic.auth.location=${server.local.startpath}etc/auth/realm.properties + +server.port = 8444 +server.ssl.enabled-protocols=TLSv1.1,TLSv1.2 +server.ssl.key-store=${server.local.startpath}etc/auth/aai_keystore +server.ssl.key-store-password=password(OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0) +server.ssl.trust-store=${server.local.startpath}etc/auth/aai_keystore +server.ssl.trust-store-password=password(OBF:1vn21ugu1saj1v9i1v941sar1ugw1vo0) +server.ssl.client-auth=want +server.ssl.key-store-type=JKS + +#mongodb configuration values +mongodb.host=localhost +mongodb.dbName=aai +mongodb.port=27017 + +#logging configurations +aai.transaction.logging=true +aai.transaction.logging.get=true +aai.transaction.logging.post=true + |