Skip to content

Instantly share code, notes, and snippets.

View AlinaKlishyna's full-sized avatar
🫥
Well, that's right

Alina Klishyna AlinaKlishyna

🫥
Well, that's right
  • IoTique
  • Rovereto, Italia
  • 12:42 (UTC -12:00)
View GitHub Profile
@drucoder
drucoder / pom.xml
Created April 5, 2018 04:05
Spring Boot. Быстрый старт JPA (база данных)
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
@drucoder
drucoder / application.properties
Created April 5, 2018 04:04
Spring Boot. Быстрый старт JPA (база данных)
spring.datasource.url=jdbc:postgresql://localhost/sweater
spring.datasource.username=postgres
spring.datasource.password=123
spring.jpa.generate-ddl=true
@dedunumax
dedunumax / .gitignore Java
Last active November 11, 2025 18:45
A complete .gitignore file for Java.
##############################
## Java
##############################
.mtj.tmp/
*.class
*.jar
*.war
*.ear
*.nar
hs_err_pid*