mejorado tema de idiomas y terminado datatable

This commit is contained in:
Jaime Jiménez
2025-06-15 16:01:04 +02:00
parent 276cf2ad7c
commit 8ed8d0bded
19 changed files with 181 additions and 119 deletions

13
.vscode/launch.json vendored
View File

@ -3,12 +3,11 @@
"configurations": [
{
"type": "java",
"name": "Debug Spring Boot in Docker",
"request": "attach",
"hostName": "localhost",
"port": 5005,
"preLaunchTask": "Start Spring Boot in Docker (Debug)",
"postDebugTask": "Stop Spring Boot in Docker"
"name": "Debug Spring Boot App",
"request": "launch",
"mainClass": "com.printhub.printhub.PrintHubApplication",
"projectName": "printhub",
"vmArgs": "-Dspring.profiles.active=dev"
}
]
}
}

View File

@ -1,3 +1,4 @@
{
"java.compile.nullAnalysis.mode": "automatic"
"java.compile.nullAnalysis.mode": "automatic",
"java.configuration.updateBuildConfiguration": "interactive"
}

32
.vscode/tasks.json vendored
View File

@ -1,32 +0,0 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Start Spring Boot in Docker (Debug)",
"type": "process",
"command": "docker",
"args": [
"exec",
"-i",
"springboot-dev",
"sh",
"-c",
"./mvnw spring-boot:run -o -Dmaven.resources.skip=true -Dmaven.test.skip=true -Dspring-boot.run.jvmArguments=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005"
],
"isBackground": true,
"problemMatcher": {
"background": {
"activeOnStart": true,
"beginsPattern": ".*",
"endsPattern": "Listening for transport dt_socket at address: 5005"
}
}
},
{
"label": "Stop Spring Boot in Docker",
"type": "shell",
"command": "docker exec springboot-dev pkill -f jdwp=transport",
"problemMatcher": []
}
]
}