We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92a6848 commit 1b9d186Copy full SHA for 1b9d186
src/main/resources/application.properties
@@ -1,7 +1,6 @@
1
+#nivel de log en la aplicación
2
logging.level.root=info
3
-
4
5
#Configuración de Base de Datos
6
7
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
@@ -13,5 +12,12 @@ spring.datasource.url=jdbc:mysql://localhost:3306/boot_demo?useSSL=false&serverT
13
12
spring.datasource.username=boot_demo
14
spring.datasource.password=boot_demo
15
+#Configuración del Pool de conexiones
16
+spring.datasource.initial-size=10
17
+spring.datasource.max-active=20
18
+spring.datasource.max-idle=5
19
+spring.datasource.min-idle=1
20
+
21
22
#[opcional]Imprime en tu consola todo el SQL.
23
spring.jpa.show-sql = true
0 commit comments