Edmon
JCHJava Community | Help. Code. Learn.
•Created by Edmon on 11/14/2024 in #java-help
Testing Framework in Java
JUnit. Okay. Thanks.
10 replies
JCHJava Community | Help. Code. Learn.
•Created by an0nym0_us on 11/14/2024 in #java-help
#StartSETUP
This is what works for me: spring:
datasource:
url: jdbc:postgresql://localhost:5332/customer
# This is the URL for the PostgreSQL Server running in docker using the 5332 mapping
# Note 1: We can switch the port number to 5432 and connect to the PostgreSQL Server
# running in localhost. But we will stick with the PostgreSQL running in docker for now.
# "customer" is the name of the database that we are going to be creating
username: postgres # username we created for PostgreSQL Server running in Docker
password: password # password we created for PostgreSQL Server running in docker
jpa:
hibernate:
ddl-auto: create-drop
properties:
hibernate:
dialect: org.hibernate.dialect.PostgreSQLDialect
format_sql: true
show-sql: true
main:
web-application-type: servlet
Below is the pox.xml file
<dependencies>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
5 replies
JCHJava Community | Help. Code. Learn.
•Created by Edmon on 10/31/2024 in #java-help
Learning Spring and Spring Boot framework
yes
8 replies
JCHJava Community | Help. Code. Learn.
•Created by Edmon on 10/31/2024 in #java-help
Learning Spring and Spring Boot framework
What are the CORES of the framework, essential each Spring developer must know?
8 replies
JCHJava Community | Help. Code. Learn.
•Created by theash2473 on 10/18/2024 in #java-help
In the bitwise compliment operator there is confusion. Please help if you can.
assembly language is complex. I'll recommend you use an online assembly language calculator to verify / learn / check your work.
17 replies
JCHJava Community | Help. Code. Learn.
•Created by OMIDD on 10/11/2024 in #java-help
recursion
I recommend you study the call stack and data frame to help you understand recursion. The Stack data structure. There's a popular Python video on Youtube on this topic presented at Python presentation.
13 replies
JCHJava Community | Help. Code. Learn.
•Created by Edmon on 10/6/2024 in #java-help
What do you recommend for learning Spring / Spring Boot?
Thanks
9 replies
JCHJava Community | Help. Code. Learn.
•Created by Edmon on 10/6/2024 in #java-help
What do you recommend for learning Spring / Spring Boot?
?
9 replies