Skip to content

Instantly share code, notes, and snippets.

View drucoder's full-sized avatar
😋
lets code right now!

Andrew drucoder

😋
lets code right now!
View GitHub Profile
@drucoder
drucoder / pom.xml
Created May 13, 2018 07:57
Spring Boot. Быстрый старт Flyway
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
</dependency>
@drucoder
drucoder / application.properties
Last active April 6, 2024 09:05
Spring Boot. Быстрый старт: Mail, подтверждение ящика
spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
spring.mail.host=smtp.yandex.ru
[email protected]
spring.mail.password=12345678
spring.mail.port=465
spring.mail.protocol=smtps
mail.debug=true
@drucoder
drucoder / pom.xml
Created May 9, 2018 13:18
Spring Boot. Быстрый старт: Mail, подтверждение ящика
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
@drucoder
drucoder / pom.xml
Created April 22, 2018 14:27
Spring Boot. Быстрый старт Freemarker (шаблонизатор)
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
@drucoder
drucoder / application.properties
Last active August 15, 2020 10:48
Spring Boot. Быстрый старт Freemarker (шаблонизатор)
spring.freemarker.expose-request-attributes=true
@drucoder
drucoder / application.properties
Created April 13, 2018 07:21
Spring Boot: Быстрый старт (Spring Security)
spring.mustache.expose-request-attributes=true
@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
@drucoder
drucoder / mustache-dependency.xml
Created March 29, 2018 18:03
Spring Boot: mustache dependency
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mustache</artifactId>
</dependency>
@drucoder
drucoder / application.properties
Created March 29, 2018 05:09
Spring Boot. Быстрый старт: настройки БД SQLite
spring.datasource.url=jdbc:sqlite:data.db
spring.jpa.database-platform=org.hibernate.dialect.SQLiteDialect