Explore >> Select a destination


You are here

openliberty.io
| | phauer.com
3.9 parsecs away

Travel
| | Why fat jars in a Docker container is not a good idea and how we can easily do better
| | jsloop.net
3.6 parsecs away

Travel
| | Here is a basic server setup with JAX-RS 3 using Jersey and Jetty 11 for the server. JAX-RS is Java API specification for RESTful web services using annotations. The project structure is as follows.
| | mydeveloperplanet.com
3.3 parsecs away

Travel
| | This blog introduces jOOQ, Liquibase, and Testcontainers integration in a Spring Boot application. It covers setting up the application, adding Liquibase for database management, generating jOOQ code, integrating a repository, implementing controller methods, and using Testcontainers for integration testing. Additionally, it discusses running the application with Spring Boot Docker Compose support.
| | hjr265.me
25.5 parsecs away

Travel
| Signals are standardized messages that an operating system can send your programs. Take Ctrl+C for example. When running a program from the terminal and you hit Ctrl+C, you expect the program to end immediately. How does that work, though? Ctrl+C is a shortcut for the POSIX signal SIGINT. By default, this signal causes your program to be terminated. But this is one of those signals you can handle: You can intercept it and do whatever you please.