desvergue-de-alexandro
yml 45 lines 863 Bytes
Raw
1 spring:
2 application:
3 name: maps-conect
4
5 datasource:
6 url: jdbc:mysql://localhost:3306/maps_conect
7 username: root
8 password:
9 driver-class-name: com.mysql.cj.jdbc.Driver
10
11 jpa:
12 hibernate:
13 ddl-auto: validate
14 show-sql: false
15 properties:
16 hibernate:
17 dialect: org.hibernate.dialect.MySQLDialect
18 format_sql: true
19
20 mvc:
21 throw-exception-if-no-handler-found: true
22
23 web:
24 resources:
25 add-mappings: false
26
27 server:
28 port: 8080
29 servlet:
30 context-path: /api
31
32 logging:
33 level:
34 root: INFO
35 com.tecmilenio.mapsconect: DEBUG
36 pattern:
37 console: "%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n"
38
39 jwt:
40 secret: mapsconnect-tecmilenio-super-secret-key-2024-desarrollo-local-minimo-64-caracteres-seguro
41 expiration: 86400000
42
43 app:
44 name: MAPS Connect
45 version: 1.0.0