Невозможно открыть соединение JDBC для выполнения DDL с помощью SpringBoot + Postgresql - PullRequest
0 голосов
/ 21 февраля 2019

Я создаю приложение Spring Boot с БД PostgreSQL.Мой application.properties выглядит следующим образом:

## Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
spring.datasource.url=jdbc:postgresql://localhost:5432/my-db
spring.datasource.username= myusername
spring.datasource.password= mypassword

# The SQL dialect makes Hibernate generate better SQL for the chosen database
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect

# Hibernate ddl auto (create, create-drop, validate, update)
spring.jpa.hibernate.ddl-auto = update

Зависимости:

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

Простая модель:

@Entity
@Table(name = "questions")
@Data
public class Question {
    @Id
    @GeneratedValue(generator = "question_generator")
    @SequenceGenerator(
            name = "question_generator",
            sequenceName = "question_sequence",
            initialValue = 1000
    )
    private Long id;

    @NotBlank
    @Size(min = 3, max = 100)
    private String title;

    @Column(columnDefinition = "text")
    private String description;
}

Репозиторий:

@Repository
public interface QuestionRepository extends JpaRepository<Question, Long> {
}

И контроллер:

@RestController
public class QuestionController {

    @Autowired
    private QuestionRepository questionRepository;

    @GetMapping("/questions")
    public Page<Question> getQuestions(Pageable pageable) {
        return questionRepository.findAll(pageable);
    }
}

Когда я пытался запустить приложение, оно выдало ошибку:

Причина: org.hibernate.exception.GenericJDBCException: Невозможнооткрыть соединение JDBC для выполнения DDL

Причина: org.postgresql.util.PSQLException: этот ResultSet закрыт.

Может кто-нибудь дать мне подсказку, что я сделал неправильно вконфигурация?Большое вам спасибо за продвинутый!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...