| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- spring:
- datasource:
- platform : oracle
- url: jdbc:oracle:thin:@192.168.241.62:1521:ORCL
- username: crss_reg
- password: crss_reg
- driverClassName: oracle.jdbc.OracleDriver
- tomcat:
- # Number of ms to wait before throwing an exception if no connection is available.
- max-wait: 10000
- # Maximum number of active connections that can be allocated from this pool at the same time.
- max-active: 50
- # Validate the connection before borrowing it from the pool.
- test-on-borrow: true
- jpa:
- database: ORACLE
- show-sql: true
- properties:
- jadira.usertype.autoRegisterUserTypes: true
- http:
- multipart:
- maxFileSize: "25Mb"
- maxRequestSize: "25Mb"
- mail:
- host: smtp.gmail.com
- port: 587
- # TODO: replace this values
- username: demo.exist.pemc@gmail.com
- password: $pockTest
- properties:
- mail.smtp.auth: true
- mail.smtp.starttlls.enable: true
- mail.smtp.starttls.required: true
- #we dont need spring mvc here
- freemarker:
- enabled: false
- template-loader-path: classpath:/mail/templates
- security:
- oauth2:
- resource:
- userInfoUri: http://localhost:8090/user
- server:
- undertow:
- accesslog:
- dir: target/logs
- enabled: true
- pattern: combined
- compression:
- enabled: true
- min-response-size: 1
- jackson:
- # for further customization please consult the documentation:
- # http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-customize-the-jackson-objectmapper
- # https://github.com/FasterXML/jackson-databind/wiki
- # deserialization:
- # FAIL_ON_UNKNOWN_PROPERTIES: true
- # DEFAULT_VIEW_INCLUSION: true
- storage:
- file:
- rootFolder: registration-dir
|