Where can I find very affordable hosting for Java and Postgres (for development)?

Hey everyone, I can use Google, but there are a lot of smart people here. For a private project, I am looking for a way to host a Spring Boot process, i.e. Java, and a Postgres. I'll probably be able to deliver JavaScript, HTML, and other resources to any hosting provider. There will probably always…

How can I save the following object (JSON) in a database using Springboot?

{ "id": 1, "exercises": [ { "name": "Übung 1", "sets": [1, 2, 3], "reps": [4, 5, 6] }, { "name": "Übung 2", "sets": [1, 2, 3], "reps": [4, 5, 6] } ] } Unfortunately, I haven't been able to get this to work yet. Can anyone tell me how to best save this format in…

Why doesn't it work (Spring Security)?

Hello, I'm currently taking a course on Udemy and learning Spring Security. Unfortunately, the course is for Spring Security 6, but I'm using the latest version, since it makes sense to start with that instead of learning the older version. Now I wanted to set up the SecurityConfig as described in the course, using SecurityFilterChain….

How can I extract the values ​​from the application.properties of the Spring application?

server.ssl.key-store = location/of/key/store/key.jks server.ssl.key-store-password = password I have these two pieces of information in my application.properties to use SSL. However, this information should be variable, or rather, not be included. What options are available to me?