1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
|
banner.charset=UTF-8 banner.location=classpath:banner.txt banner.image.location=classpath:banner.gif banner.image.width= banner.image.height= banner.image.margin= banner.image.invert=
logging.config= logging.exception-conversion-word=%wEx logging.file= logging.level.*= logging.path= logging.pattern.console= logging.pattern.file= logging.pattern.level= logging.register-shutdown-hook=false
spring.aop.auto=true spring.aop.proxy-target-class=false
spring.application.index= spring.application.name=
spring.application.admin.enabled=false spring.application.admin.jmx-name=org.springframework.boot:type=Admin,name=SpringApplication
spring.autoconfigure.exclude=
spring.beaninfo.ignore=true
spring.cache.cache-names= spring.cache.caffeine.spec= spring.cache.couchbase.expiration=0 spring.cache.ehcache.config= spring.cache.guava.spec= spring.cache.hazelcast.config= spring.cache.infinispan.config= spring.cache.jcache.config= spring.cache.jcache.provider= spring.cache.type=
spring.config.location= spring.config.name=application
spring.hazelcast.config=
spring.info.build.location=classpath:META-INF/build-info.properties spring.info.git.location=classpath:git.properties
spring.jmx.default-domain= spring.jmx.enabled=true spring.jmx.server=mbeanServer
spring.mail.default-encoding=UTF-8 spring.mail.host= spring.mail.jndi-name= spring.mail.password= spring.mail.port= spring.mail.properties.*= spring.mail.protocol=smtp spring.mail.test-connection=false spring.mail.username=
spring.main.banner-mode=console spring.main.sources= spring.main.web-environment=
spring.mandatory-file-encoding=
spring.messages.always-use-message-format=false spring.messages.basename=messages spring.messages.cache-seconds=-1 spring.messages.encoding=UTF-8 spring.messages.fallback-to-system-locale=true
spring.output.ansi.enabled=detect
spring.pid.fail-on-write-error= spring.pid.file=
spring.profiles.active= spring.profiles.include=
spring.sendgrid.api-key= spring.sendgrid.username= spring.sendgrid.password= spring.sendgrid.proxy.host= spring.sendgrid.proxy.port=
server.address= server.compression.enabled=false server.compression.excluded-user-agents= server.compression.mime-types= server.compression.min-response-size= server.connection-timeout= server.context-parameters.*= server.context-path= server.display-name=application server.max-http-header-size=0 server.error.include-stacktrace=never server.error.path=/error server.error.whitelabel.enabled=true server.jetty.acceptors= server.jetty.max-http-post-size=0 server.jetty.selectors= server.jsp-servlet.class-name=org.apache.jasper.servlet.JspServlet server.jsp-servlet.init-parameters.*= server.jsp-servlet.registered=true server.port=8080 server.server-header= server.servlet-path=/ server.use-forward-headers= server.session.cookie.comment= server.session.cookie.domain= server.session.cookie.http-only= server.session.cookie.max-age= server.session.cookie.name= server.session.cookie.path= server.session.cookie.secure= server.session.persistent=false server.session.store-dir= server.session.timeout= server.session.tracking-modes= server.ssl.ciphers= server.ssl.client-auth= server.ssl.enabled= server.ssl.enabled-protocols= server.ssl.key-alias= server.ssl.key-password= server.ssl.key-store= server.ssl.key-store-password= server.ssl.key-store-provider= server.ssl.key-store-type= server.ssl.protocol=TLS server.ssl.trust-store= server.ssl.trust-store-password= server.ssl.trust-store-provider= server.ssl.trust-store-type= server.tomcat.accept-count= server.tomcat.accesslog.buffered=true server.tomcat.accesslog.directory=logs server.tomcat.accesslog.enabled=false server.tomcat.accesslog.pattern=common server.tomcat.accesslog.prefix=access_log server.tomcat.accesslog.rename-on-rotate=false server.tomcat.accesslog.request-attributes-enabled=false server.tomcat.accesslog.rotate=true server.tomcat.accesslog.suffix=.log server.tomcat.additional-tld-skip-patterns= server.tomcat.background-processor-delay=30 server.tomcat.basedir= server.tomcat.internal-proxies=10\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\ 192\\.168\\.\\d{1,3}\\.\\d{1,3}|\\ 169\\.254\\.\\d{1,3}\\.\\d{1,3}|\\ 127\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\ 172\\.1[6-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\ 172\\.2[0-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\ 172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3} server.tomcat.max-connections= server.tomcat.max-http-post-size=0 server.tomcat.max-threads=0 server.tomcat.min-spare-threads=0 server.tomcat.port-header=X-Forwarded-Port server.tomcat.protocol-header= server.tomcat.protocol-header-https-value=https server.tomcat.redirect-context-root= server.tomcat.remote-ip-header= server.tomcat.uri-encoding=UTF-8 server.undertow.accesslog.dir= server.undertow.accesslog.enabled=false server.undertow.accesslog.pattern=common server.undertow.accesslog.prefix=access_log. server.undertow.accesslog.rotate=true server.undertow.accesslog.suffix=log server.undertow.buffer-size= server.undertow.buffers-per-region= server.undertow.direct-buffers= server.undertow.io-threads= server.undertow.max-http-post-size=0 server.undertow.worker-threads=
spring.freemarker.allow-request-override=false spring.freemarker.allow-session-override=false spring.freemarker.cache=false spring.freemarker.charset=UTF-8 spring.freemarker.check-template-location=true spring.freemarker.content-type=text/html spring.freemarker.enabled=true spring.freemarker.expose-request-attributes=false spring.freemarker.expose-session-attributes=false spring.freemarker.expose-spring-macro-helpers=true spring.freemarker.prefer-file-system-access=true spring.freemarker.prefix= spring.freemarker.request-context-attribute= spring.freemarker.settings.*= spring.freemarker.suffix= spring.freemarker.template-loader-path=classpath:/templates/ spring.freemarker.view-names=
spring.groovy.template.allow-request-override=false spring.groovy.template.allow-session-override=false spring.groovy.template.cache= spring.groovy.template.charset=UTF-8 spring.groovy.template.check-template-location=true spring.groovy.template.configuration.*= spring.groovy.template.content-type=test/html spring.groovy.template.enabled=true spring.groovy.template.expose-request-attributes=false spring.groovy.template.expose-session-attributes=false spring.groovy.template.expose-spring-macro-helpers=true spring.groovy.template.prefix= spring.groovy.template.request-context-attribute= spring.groovy.template.resource-loader-path=classpath:/templates/ spring.groovy.template.suffix=.tpl spring.groovy.template.view-names=
spring.hateoas.use-hal-as-default-json-media-type=true
spring.http.converters.preferred-json-mapper=jackson
spring.http.encoding.charset=UTF-8 spring.http.encoding.enabled=true spring.http.encoding.force= spring.http.encoding.force-request= spring.http.encoding.force-response= spring.http.encoding.mapping=
spring.http.multipart.enabled=true spring.http.multipart.file-size-threshold=0 spring.http.multipart.location= spring.http.multipart.max-file-size=1MB spring.http.multipart.max-request-size=10MB spring.http.multipart.resolve-lazily=false
spring.jackson.date-format= spring.jackson.default-property-inclusion= spring.jackson.deserialization.*= spring.jackson.generator.*= spring.jackson.joda-date-time-format= spring.jackson.locale= spring.jackson.mapper.*= spring.jackson.parser.*= spring.jackson.property-naming-strategy= spring.jackson.serialization.*= spring.jackson.time-zone=
spring.jersey.application-path= spring.jersey.filter.order=0 spring.jersey.init.*= spring.jersey.servlet.load-on-startup=-1 spring.jersey.type=servlet
spring.ldap.urls= spring.ldap.base= spring.ldap.username= spring.ldap.password= spring.ldap.base-environment.*=
spring.ldap.embedded.port= spring.ldap.embedded.credential.username= spring.ldap.embedded.credential.password= spring.ldap.embedded.base-dn= spring.ldap.embedded.ldif=classpath:schema.ldif
spring.mobile.devicedelegatingviewresolver.enable-fallback=false spring.mobile.devicedelegatingviewresolver.enabled=false spring.mobile.devicedelegatingviewresolver.mobile-prefix=mobile/ spring.mobile.devicedelegatingviewresolver.mobile-suffix= spring.mobile.devicedelegatingviewresolver.normal-prefix= spring.mobile.devicedelegatingviewresolver.normal-suffix= spring.mobile.devicedelegatingviewresolver.tablet-prefix=tablet/ spring.mobile.devicedelegatingviewresolver.tablet-suffix=
spring.mobile.sitepreference.enabled=true
spring.mustache.allow-request-override= spring.mustache.allow-session-override= spring.mustache.cache= spring.mustache.charset= spring.mustache.check-template-location= spring.mustache.content-type= spring.mustache.enabled= spring.mustache.expose-request-attributes= spring.mustache.expose-session-attributes= spring.mustache.expose-spring-macro-helpers= spring.mustache.prefix=classpath:/templates/ spring.mustache.request-context-attribute= spring.mustache.suffix=.html spring.mustache.view-names=
spring.mvc.async.request-timeout= spring.mvc.date-format= spring.mvc.dispatch-trace-request=false spring.mvc.dispatch-options-request=true spring.mvc.favicon.enabled=true spring.mvc.formcontent.putfilter.enabled=true spring.mvc.ignore-default-model-on-redirect=true spring.mvc.locale= spring.mvc.locale-resolver=accept-header spring.mvc.log-resolved-exception=false spring.mvc.media-types.*= spring.mvc.message-codes-resolver-format= spring.mvc.servlet.load-on-startup=-1 spring.mvc.static-path-pattern=/** spring.mvc.throw-exception-if-no-handler-found=false spring.mvc.view.prefix= spring.mvc.view.suffix=
spring.resources.add-mappings=true spring.resources.cache-period= spring.resources.chain.cache=true spring.resources.chain.enabled= spring.resources.chain.gzipped=false spring.resources.chain.html-application-cache=false spring.resources.chain.strategy.content.enabled=false spring.resources.chain.strategy.content.paths=/** spring.resources.chain.strategy.fixed.enabled=false spring.resources.chain.strategy.fixed.paths=/** spring.resources.chain.strategy.fixed.version= spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/
spring.session.hazelcast.flush-mode=on-save spring.session.hazelcast.map-name=spring:session:sessions spring.session.jdbc.initializer.enabled= spring.session.jdbc.schema=classpath:org/springframework/session/jdbc/schema-@@platform@@.sql spring.session.jdbc.table-name=SPRING_SESSION spring.session.mongo.collection-name=sessions spring.session.redis.flush-mode=on-save spring.session.redis.namespace= spring.session.store-type=
spring.social.auto-connection-views=false
spring.social.facebook.app-id= spring.social.facebook.app-secret=
spring.social.linkedin.app-id= spring.social.linkedin.app-secret=
spring.social.twitter.app-id= spring.social.twitter.app-secret=
spring.thymeleaf.cache=true spring.thymeleaf.check-template=true spring.thymeleaf.check-template-location=true spring.thymeleaf.content-type=text/html spring.thymeleaf.enabled=true spring.thymeleaf.encoding=UTF-8 spring.thymeleaf.excluded-view-names= spring.thymeleaf.mode=HTML5 spring.thymeleaf.prefix=classpath:/templates/ spring.thymeleaf.suffix=.html spring.thymeleaf.template-resolver-order= spring.thymeleaf.view-names=
spring.webservices.path=/services spring.webservices.servlet.init= spring.webservices.servlet.load-on-startup=-1
security.basic.authorize-mode=role security.basic.enabled=true security.basic.path=/** security.basic.realm=Spring security.enable-csrf=false security.filter-order=0 security.filter-dispatcher-types=ASYNC, FORWARD, INCLUDE, REQUEST security.headers.cache=true security.headers.content-security-policy= security.headers.content-security-policy-mode=default security.headers.content-type=true security.headers.frame=true security.headers.hsts=all security.headers.xss=true security.ignored= security.require-ssl=false security.sessions=stateless security.user.name=user security.user.password= security.user.role=USER
security.oauth2.client.client-id= security.oauth2.client.client-secret=
security.oauth2.resource.filter-order= security.oauth2.resource.id= security.oauth2.resource.jwt.key-uri= security.oauth2.resource.jwt.key-value= security.oauth2.resource.prefer-token-info=true security.oauth2.resource.service-id=resource security.oauth2.resource.token-info-uri= security.oauth2.resource.token-type= security.oauth2.resource.user-info-uri=
security.oauth2.sso.filter-order= security.oauth2.sso.login-path=/login
flyway.baseline-description= flyway.baseline-version=1 flyway.baseline-on-migrate= flyway.check-location=false flyway.clean-on-validation-error= flyway.enabled=true flyway.encoding= flyway.ignore-failed-future-migration= flyway.init-sqls= flyway.locations=classpath:db/migration flyway.out-of-order= flyway.password= flyway.placeholder-prefix= flyway.placeholder-replacement= flyway.placeholder-suffix= flyway.placeholders.*= flyway.schemas= flyway.sql-migration-prefix=V flyway.sql-migration-separator= flyway.sql-migration-suffix=.sql flyway.table= flyway.url= flyway.user= flyway.validate-on-migrate=
liquibase.change-log=classpath:/db/changelog/db.changelog-master.yaml liquibase.check-change-log-location=true liquibase.contexts= liquibase.default-schema= liquibase.drop-first=false liquibase.enabled=true liquibase.labels= liquibase.parameters.*= liquibase.password= liquibase.rollback-file= liquibase.url= liquibase.user=
spring.couchbase.bootstrap-hosts= spring.couchbase.bucket.name=default spring.couchbase.bucket.password= spring.couchbase.env.endpoints.key-value=1 spring.couchbase.env.endpoints.query=1 spring.couchbase.env.endpoints.view=1 spring.couchbase.env.ssl.enabled= spring.couchbase.env.ssl.key-store= spring.couchbase.env.ssl.key-store-password= spring.couchbase.env.timeouts.connect=5000 spring.couchbase.env.timeouts.key-value=2500 spring.couchbase.env.timeouts.query=7500 spring.couchbase.env.timeouts.socket-connect=1000 spring.couchbase.env.timeouts.view=7500
spring.dao.exceptiontranslation.enabled=true
spring.data.cassandra.cluster-name= spring.data.cassandra.compression=none spring.data.cassandra.connect-timeout-millis= spring.data.cassandra.consistency-level= spring.data.cassandra.contact-points=localhost spring.data.cassandra.fetch-size= spring.data.cassandra.keyspace-name= spring.data.cassandra.load-balancing-policy= spring.data.cassandra.port= spring.data.cassandra.password= spring.data.cassandra.read-timeout-millis= spring.data.cassandra.reconnection-policy= spring.data.cassandra.retry-policy= spring.data.cassandra.serial-consistency-level= spring.data.cassandra.schema-action=none spring.data.cassandra.ssl=false spring.data.cassandra.username=
spring.data.couchbase.auto-index=false spring.data.couchbase.consistency=read-your-own-writes spring.data.couchbase.repositories.enabled=true
spring.data.elasticsearch.cluster-name=elasticsearch spring.data.elasticsearch.cluster-nodes= spring.data.elasticsearch.properties.*= spring.data.elasticsearch.repositories.enabled=true
spring.data.ldap.repositories.enabled=true
spring.data.mongodb.authentication-database= spring.data.mongodb.database=test spring.data.mongodb.field-naming-strategy= spring.data.mongodb.grid-fs-database= spring.data.mongodb.host=localhost spring.data.mongodb.password= spring.data.mongodb.port=27017 spring.data.mongodb.repositories.enabled=true spring.data.mongodb.uri=mongodb://localhost/test spring.data.mongodb.username=
spring.data.redis.repositories.enabled=true
spring.data.neo4j.compiler= spring.data.neo4j.embedded.enabled=true spring.data.neo4j.open-in-view=false spring.data.neo4j.password= spring.data.neo4j.repositories.enabled=true spring.data.neo4j.uri= spring.data.neo4j.username=
spring.data.rest.base-path= spring.data.rest.default-page-size= spring.data.rest.detection-strategy=default spring.data.rest.enable-enum-translation= spring.data.rest.limit-param-name= spring.data.rest.max-page-size= spring.data.rest.page-param-name= spring.data.rest.return-body-on-create= spring.data.rest.return-body-on-update= spring.data.rest.sort-param-name=
spring.data.solr.host=http://127.0.0.1:8983/solr spring.data.solr.repositories.enabled=true spring.data.solr.zk-host=
spring.datasource.continue-on-error=false spring.datasource.data= spring.datasource.data-username= spring.datasource.data-password= spring.datasource.dbcp2.*= spring.datasource.driver-class-name= spring.datasource.generate-unique-name=false spring.datasource.hikari.*= spring.datasource.initialize=true spring.datasource.jmx-enabled=false spring.datasource.jndi-name= spring.datasource.name=testdb spring.datasource.password= spring.datasource.platform=all spring.datasource.schema= spring.datasource.schema-username= spring.datasource.schema-password= spring.datasource.separator=; spring.datasource.sql-script-encoding= spring.datasource.tomcat.*= spring.datasource.type= spring.datasource.url= spring.datasource.username=
spring.elasticsearch.jest.connection-timeout=3000 spring.elasticsearch.jest.multi-threaded=true spring.elasticsearch.jest.password= spring.elasticsearch.jest.proxy.host= spring.elasticsearch.jest.proxy.port= spring.elasticsearch.jest.read-timeout=3000 spring.elasticsearch.jest.uris=http://localhost:9200 spring.elasticsearch.jest.username=
spring.h2.console.enabled=false spring.h2.console.path=/h2-console spring.h2.console.settings.trace=false spring.h2.console.settings.web-allow-others=false
spring.jooq.sql-dialect=
spring.data.jpa.repositories.enabled=true spring.jpa.database= spring.jpa.database-platform= spring.jpa.generate-ddl=false spring.jpa.hibernate.ddl/dl-auto= spring.jpa.hibernate.naming.implicit-strategy= spring.jpa.hibernate.naming.physical-strategy= spring.jpa.hibernate.naming.strategy= spring.jpa.hibernate.use-new-id-generator-mappings= spring.jpa.open-in-view=true spring.jpa.properties.*= spring.jpa.show-sql=false
spring.jta.enabled=true spring.jta.log-dir= spring.jta.transaction-manager-id=
spring.jta.atomikos.connectionfactory.borrow-connection-timeout=30 spring.jta.atomikos.connectionfactory.ignore-session-transacted-flag=true spring.jta.atomikos.connectionfactory.local-transaction-mode=false spring.jta.atomikos.connectionfactory.maintenance-interval=60 spring.jta.atomikos.connectionfactory.max-idle-time=60 spring.jta.atomikos.connectionfactory.max-lifetime=0 spring.jta.atomikos.connectionfactory.max-pool-size=1 spring.jta.atomikos.connectionfactory.min-pool-size=1 spring.jta.atomikos.connectionfactory.reap-timeout=0 spring.jta.atomikos.connectionfactory.unique-resource-name=jmsConnectionFactory spring.jta.atomikos.datasource.borrow-connection-timeout=30 spring.jta.atomikos.datasource.default-isolation-level= spring.jta.atomikos.datasource.login-timeout= spring.jta.atomikos.datasource.maintenance-interval=60 spring.jta.atomikos.datasource.max-idle-time=60 spring.jta.atomikos.datasource.max-lifetime=0 spring.jta.atomikos.datasource.max-pool-size=1 spring.jta.atomikos.datasource.min-pool-size=1 spring.jta.atomikos.datasource.reap-timeout=0 spring.jta.atomikos.datasource.test-query= spring.jta.atomikos.datasource.unique-resource-name=dataSource spring.jta.atomikos.properties.checkpoint-interval=500 spring.jta.atomikos.properties.console-file-count=1 spring.jta.atomikos.properties.console-file-limit=-1 spring.jta.atomikos.properties.console-file-name=tm.out spring.jta.atomikos.properties.console-log-level=warn spring.jta.atomikos.properties.default-jta-timeout=10000 spring.jta.atomikos.properties.enable-logging=true spring.jta.atomikos.properties.force-shutdown-on-vm-exit=false spring.jta.atomikos.properties.log-base-dir= spring.jta.atomikos.properties.log-base-name=tmlog spring.jta.atomikos.properties.max-actives=50 spring.jta.atomikos.properties.max-timeout=300000 spring.jta.atomikos.properties.output-dir= spring.jta.atomikos.properties.serial-jta-transactions=true spring.jta.atomikos.properties.service= spring.jta.atomikos.properties.threaded-two-phase-commit=true spring.jta.atomikos.properties.transaction-manager-unique-name=
spring.jta.bitronix.connectionfactory.acquire-increment=1 spring.jta.bitronix.connectionfactory.acquisition-interval=1 spring.jta.bitronix.connectionfactory.acquisition-timeout=30 spring.jta.bitronix.connectionfactory.allow-local-transactions=true spring.jta.bitronix.connectionfactory.apply-transaction-timeout=false spring.jta.bitronix.connectionfactory.automatic-enlisting-enabled=true spring.jta.bitronix.connectionfactory.cache-producers-consumers=true spring.jta.bitronix.connectionfactory.defer-connection-release=true spring.jta.bitronix.connectionfactory.ignore-recovery-failures=false spring.jta.bitronix.connectionfactory.max-idle-time=60 spring.jta.bitronix.connectionfactory.max-pool-size=10 spring.jta.bitronix.connectionfactory.min-pool-size=0 spring.jta.bitronix.connectionfactory.password= spring.jta.bitronix.connectionfactory.share-transaction-connections=false spring.jta.bitronix.connectionfactory.test-connections=true spring.jta.bitronix.connectionfactory.two-pc-ordering-position=1 spring.jta.bitronix.connectionfactory.unique-name=jmsConnectionFactory spring.jta.bitronix.connectionfactory.use-tm-join=true Whether or not TMJOIN should be used when starting XAResources. spring.jta.bitronix.connectionfactory.user= spring.jta.bitronix.datasource.acquire-increment=1 spring.jta.bitronix.datasource.acquisition-interval=1 spring.jta.bitronix.datasource.acquisition-timeout=30 spring.jta.bitronix.datasource.allow-local-transactions=true spring.jta.bitronix.datasource.apply-transaction-timeout=false spring.jta.bitronix.datasource.automatic-enlisting-enabled=true spring.jta.bitronix.datasource.cursor-holdability= spring.jta.bitronix.datasource.defer-connection-release=true spring.jta.bitronix.datasource.enable-jdbc4-connection-test= spring.jta.bitronix.datasource.ignore-recovery-failures=false spring.jta.bitronix.datasource.isolation-level= spring.jta.bitronix.datasource.local-auto-commit= spring.jta.bitronix.datasource.login-timeout= spring.jta.bitronix.datasource.max-idle-time=60 spring.jta.bitronix.datasource.max-pool-size=10 spring.jta.bitronix.datasource.min-pool-size=0 spring.jta.bitronix.datasource.prepared-statement-cache-size=0 spring.jta.bitronix.datasource.share-transaction-connections=false spring.jta.bitronix.datasource.test-query= spring.jta.bitronix.datasource.two-pc-ordering-position=1 spring.jta.bitronix.datasource.unique-name=dataSource spring.jta.bitronix.datasource.use-tm-join=true Whether or not TMJOIN should be used when starting XAResources. spring.jta.bitronix.properties.allow-multiple-lrc=false spring.jta.bitronix.properties.asynchronous2-pc=false spring.jta.bitronix.properties.background-recovery-interval-seconds=60 spring.jta.bitronix.properties.current-node-only-recovery=true spring.jta.bitronix.properties.debug-zero-resource-transaction=false spring.jta.bitronix.properties.default-transaction-timeout=60 spring.jta.bitronix.properties.disable-jmx=false spring.jta.bitronix.properties.exception-analyzer= spring.jta.bitronix.properties.filter-log-status=false spring.jta.bitronix.properties.force-batching-enabled=true spring.jta.bitronix.properties.forced-write-enabled=true spring.jta.bitronix.properties.graceful-shutdown-interval=60 spring.jta.bitronix.properties.jndi-transaction-synchronization-registry-name= spring.jta.bitronix.properties.jndi-user-transaction-name= spring.jta.bitronix.properties.journal=disk spring.jta.bitronix.properties.log-part1-filename=btm1.tlog spring.jta.bitronix.properties.log-part2-filename=btm2.tlog spring.jta.bitronix.properties.max-log-size-in-mb=2 spring.jta.bitronix.properties.resource-configuration-filename= spring.jta.bitronix.properties.server-id= spring.jta.bitronix.properties.skip-corrupted-logs=false spring.jta.bitronix.properties.warn-about-zero-resource-transaction=true
spring.jta.narayana.default-timeout=60 spring.jta.narayana.expiry-scanners=com.arjuna.ats.internal.arjuna.recovery.ExpiredTransactionStatusManagerScanner spring.jta.narayana.log-dir= spring.jta.narayana.one-phase-commit=true spring.jta.narayana.periodic-recovery-period=120 spring.jta.narayana.recovery-backoff-period=10 spring.jta.narayana.recovery-db-pass= spring.jta.narayana.recovery-db-user= spring.jta.narayana.recovery-jms-pass= spring.jta.narayana.recovery-jms-user= spring.jta.narayana.recovery-modules= spring.jta.narayana.transaction-manager-id=1 spring.jta.narayana.xa-resource-orphan-filters=
spring.mongodb.embedded.features=SYNC_DELAY spring.mongodb.embedded.storage.database-dir= spring.mongodb.embedded.storage.oplog-size= spring.mongodb.embedded.storage.repl-set-name= spring.mongodb.embedded.version=2.6.10
spring.redis.cluster.max-redirects= spring.redis.cluster.nodes= spring.redis.database=0 spring.redis.url= spring.redis.host=localhost spring.redis.password= spring.redis.ssl=false spring.redis.pool.max-active=8 spring.redis.pool.max-idle=8 spring.redis.pool.max-wait=-1 spring.redis.pool.min-idle=0 spring.redis.port=6379 spring.redis.sentinel.master= spring.redis.sentinel.nodes= spring.redis.timeout=0
spring.transaction.default-timeout= spring.transaction.rollback-on-commit-failure=
spring.activemq.broker-url= spring.activemq.in-memory=true spring.activemq.password= spring.activemq.user= spring.activemq.packages.trust-all=false spring.activemq.packages.trusted= spring.activemq.pool.configuration.*= spring.activemq.pool.enabled=false spring.activemq.pool.expiry-timeout=0 spring.activemq.pool.idle-timeout=30000 spring.activemq.pool.max-connections=1
spring.artemis.embedded.cluster-password= spring.artemis.embedded.data-directory= spring.artemis.embedded.enabled=true spring.artemis.embedded.persistent=false spring.artemis.embedded.queues= spring.artemis.embedded.server-id= spring.artemis.embedded.topics= spring.artemis.host=localhost spring.artemis.mode= spring.artemis.password= spring.artemis.port=61616 spring.artemis.user=
spring.batch.initializer.enabled= spring.batch.job.enabled=true spring.batch.job.names= spring.batch.schema=classpath:org/springframework/batch/core/schema-@@platform@@.sql spring.batch.table-prefix=
spring.jms.jndi-name= spring.jms.listener.acknowledge-mode= spring.jms.listener.auto-startup=true spring.jms.listener.concurrency= spring.jms.listener.max-concurrency= spring.jms.pub-sub-domain=false spring.jms.template.default-destination= spring.jms.template.delivery-delay= spring.jms.template.delivery-mode= spring.jms.template.priority= spring.jms.template.qos-enabled= spring.jms.template.receive-timeout= spring.jms.template.time-to-live=
spring.kafka.bootstrap-servers= spring.kafka.client-id= spring.kafka.consumer.auto-commit-interval= spring.kafka.consumer.auto-offset-reset= spring.kafka.consumer.bootstrap-servers= spring.kafka.consumer.client-id= spring.kafka.consumer.enable-auto-commit= spring.kafka.consumer.fetch-max-wait= spring.kafka.consumer.fetch-min-size= spring.kafka.consumer.group-id= spring.kafka.consumer.heartbeat-interval= spring.kafka.consumer.key-deserializer= spring.kafka.consumer.max-poll-records= spring.kafka.consumer.value-deserializer= spring.kafka.listener.ack-count= spring.kafka.listener.ack-mode= spring.kafka.listener.ack-time= spring.kafka.listener.concurrency= spring.kafka.listener.poll-timeout= spring.kafka.producer.acks= spring.kafka.producer.batch-size= spring.kafka.producer.bootstrap-servers= spring.kafka.producer.buffer-memory= spring.kafka.producer.client-id= spring.kafka.producer.compression-type= spring.kafka.producer.key-serializer= spring.kafka.producer.retries= spring.kafka.producer.value-serializer= spring.kafka.properties.*= spring.kafka.ssl.key-password= spring.kafka.ssl.keystore-location= spring.kafka.ssl.keystore-password= spring.kafka.ssl.truststore-location= spring.kafka.ssl.truststore-password= spring.kafka.template.default-topic=
spring.rabbitmq.addresses= spring.rabbitmq.cache.channel.checkout-timeout= spring.rabbitmq.cache.channel.size= spring.rabbitmq.cache.connection.mode=channel spring.rabbitmq.cache.connection.size= spring.rabbitmq.connection-timeout= spring.rabbitmq.dynamic=true spring.rabbitmq.host=localhost spring.rabbitmq.listener.acknowledge-mode= spring.rabbitmq.listener.auto-startup=true spring.rabbitmq.listener.concurrency= spring.rabbitmq.listener.default-requeue-rejected= spring.rabbitmq.listener.idle-event-interval= spring.rabbitmq.listener.max-concurrency= spring.rabbitmq.listener.prefetch= spring.rabbitmq.listener.retry.enabled=false spring.rabbitmq.listener.retry.initial-interval=1000 spring.rabbitmq.listener.retry.max-attempts=3 spring.rabbitmq.listener.retry.max-interval=10000 spring.rabbitmq.listener.retry.multiplier=1.0 spring.rabbitmq.listener.retry.stateless=true spring.rabbitmq.listener.transaction-size= spring.rabbitmq.password= spring.rabbitmq.port=5672 spring.rabbitmq.publisher-confirms=false spring.rabbitmq.publisher-returns=false spring.rabbitmq.requested-heartbeat= spring.rabbitmq.ssl.enabled=false spring.rabbitmq.ssl.key-store= spring.rabbitmq.ssl.key-store-password= spring.rabbitmq.ssl.trust-store= spring.rabbitmq.ssl.trust-store-password= spring.rabbitmq.ssl.algorithm= spring.rabbitmq.template.mandatory=false spring.rabbitmq.template.receive-timeout=0 spring.rabbitmq.template.reply-timeout=5000 spring.rabbitmq.template.retry.enabled=false spring.rabbitmq.template.retry.initial-interval=1000 spring.rabbitmq.template.retry.max-attempts=3 spring.rabbitmq.template.retry.max-interval=10000 spring.rabbitmq.template.retry.multiplier=1.0 spring.rabbitmq.username= spring.rabbitmq.virtual-host=
endpoints.enabled=true endpoints.sensitive= endpoints.actuator.enabled=true endpoints.actuator.path= endpoints.actuator.sensitive=false endpoints.auditevents.enabled= endpoints.auditevents.path= endpoints.auditevents.sensitive=false endpoints.autoconfig.enabled= endpoints.autoconfig.id= endpoints.autoconfig.path= endpoints.autoconfig.sensitive= endpoints.beans.enabled= endpoints.beans.id= endpoints.beans.path= endpoints.beans.sensitive= endpoints.configprops.enabled= endpoints.configprops.id= endpoints.configprops.keys-to-sanitize=password,secret,key,token,.*credentials.*,vcap_services endpoints.configprops.path= endpoints.configprops.sensitive= endpoints.docs.curies.enabled=false endpoints.docs.enabled=true endpoints.docs.path=/docs endpoints.docs.sensitive=false endpoints.dump.enabled= endpoints.dump.id= endpoints.dump.path= endpoints.dump.sensitive= endpoints.env.enabled= endpoints.env.id= endpoints.env.keys-to-sanitize=password,secret,key,token,.*credentials.*,vcap_services endpoints.env.path= endpoints.env.sensitive= endpoints.flyway.enabled= endpoints.flyway.id= endpoints.flyway.sensitive= endpoints.health.enabled= endpoints.health.id= endpoints.health.mapping.*= endpoints.health.path= endpoints.health.sensitive= endpoints.health.time-to-live=1000 endpoints.heapdump.enabled= endpoints.heapdump.path= endpoints.heapdump.sensitive= endpoints.hypermedia.enabled=false endpoints.info.enabled= endpoints.info.id= endpoints.info.path= endpoints.info.sensitive= endpoints.jolokia.enabled=true endpoints.jolokia.path=/jolokia endpoints.jolokia.sensitive=true endpoints.liquibase.enabled= endpoints.liquibase.id= endpoints.liquibase.sensitive= endpoints.logfile.enabled=true endpoints.logfile.external-file= endpoints.logfile.path=/logfile endpoints.logfile.sensitive=true endpoints.loggers.enabled=true endpoints.loggers.id= endpoints.loggers.path=/logfile endpoints.loggers.sensitive=true endpoints.mappings.enabled= endpoints.mappings.id= endpoints.mappings.path= endpoints.mappings.sensitive= endpoints.metrics.enabled= endpoints.metrics.filter.enabled=true endpoints.metrics.filter.gauge-submissions=merged endpoints.metrics.filter.counter-submissions=merged endpoints.metrics.id= endpoints.metrics.path= endpoints.metrics.sensitive= endpoints.shutdown.enabled= endpoints.shutdown.id= endpoints.shutdown.path= endpoints.shutdown.sensitive= endpoints.trace.enabled= endpoints.trace.id= endpoints.trace.path= endpoints.trace.sensitive=
endpoints.cors.allow-credentials= endpoints.cors.allowed-headers= endpoints.cors.allowed-methods=GET endpoints.cors.allowed-origins= endpoints.cors.exposed-headers= endpoints.cors.max-age=1800
endpoints.jmx.domain= endpoints.jmx.enabled=true endpoints.jmx.static-names= endpoints.jmx.unique-names=false
jolokia.config.*=
management.add-application-context-header=true management.address= management.context-path= management.cloudfoundry.enabled= management.cloudfoundry.skip-ssl-validation= management.port= management.security.enabled=true management.security.roles=ACTUATOR management.security.sessions=stateless management.ssl.ciphers= management.ssl.client-auth= management.ssl.enabled= management.ssl.enabled-protocols= management.ssl.key-alias= management.ssl.key-password= management.ssl.key-store= management.ssl.key-store-password= management.ssl.key-store-provider= management.ssl.key-store-type= management.ssl.protocol=TLS management.ssl.trust-store= management.ssl.trust-store-password= management.ssl.trust-store-provider= management.ssl.trust-store-type=
management.health.db.enabled=true management.health.cassandra.enabled=true management.health.couchbase.enabled=true management.health.defaults.enabled=true management.health.diskspace.enabled=true management.health.diskspace.path= management.health.diskspace.threshold=0 management.health.elasticsearch.enabled=true management.health.elasticsearch.indices= management.health.elasticsearch.response-timeout=100 management.health.jms.enabled=true management.health.ldap.enabled=true management.health.mail.enabled=true management.health.mongo.enabled=true management.health.rabbit.enabled=true management.health.redis.enabled=true management.health.solr.enabled=true management.health.status.order=DOWN, OUT_OF_SERVICE, UP, UNKNOWN
management.info.build.enabled=true management.info.defaults.enabled=true management.info.env.enabled=true management.info.git.enabled=true management.info.git.mode=simple
management.shell.auth.type=simple management.shell.auth.jaas.domain=my-domain management.shell.auth.key.path= management.shell.auth.simple.user.name=user management.shell.auth.simple.user.password= management.shell.auth.spring.roles=ACTUATOR management.shell.command-path-patterns=classpath*:/commands/**,classpath*:/crash/commands/** management.shell.command-refresh-interval=-1 management.shell.config-path-patterns=classpath*:/crash/* management.shell.disabled-commands=jpa*,jdbc*,jndi* management.shell.disabled-plugins= management.shell.ssh.auth-timeout = management.shell.ssh.enabled=true management.shell.ssh.idle-timeout = management.shell.ssh.key-path= management.shell.ssh.port=2000 management.shell.telnet.enabled=false management.shell.telnet.port=5000
management.trace.include=request-headers,response-headers,cookies,errors
spring.metrics.export.aggregate.key-pattern= spring.metrics.export.aggregate.prefix= spring.metrics.export.delay-millis=5000 spring.metrics.export.enabled=true spring.metrics.export.excludes= spring.metrics.export.includes= spring.metrics.export.redis.key=keys.spring.metrics spring.metrics.export.redis.prefix=spring.metrics spring.metrics.export.send-latest= spring.metrics.export.statsd.host= spring.metrics.export.statsd.port=8125 spring.metrics.export.statsd.prefix= spring.metrics.export.triggers.*=
spring.devtools.livereload.enabled=true spring.devtools.livereload.port=35729 spring.devtools.restart.additional-exclude= spring.devtools.restart.additional-paths= spring.devtools.restart.enabled=true spring.devtools.restart.exclude=META-INF/maven/**,META-INF/resources/**,resources/**,static/**,public/**,templates/**,**/*Test.class,**/*Tests.class,git.properties spring.devtools.restart.poll-interval=1000 spring.devtools.restart.quiet-period=400 spring.devtools.restart.trigger-file=
spring.devtools.remote.context-path=/.~~spring-boot!~ spring.devtools.remote.debug.enabled=true spring.devtools.remote.debug.local-port=8000 spring.devtools.remote.proxy.host= spring.devtools.remote.proxy.port= spring.devtools.remote.restart.enabled=true spring.devtools.remote.secret= spring.devtools.remote.secret-header-name=X-AUTH-TOKEN
spring.test.database.replace=any spring.test.mockmvc.print=default
|