简体   繁体   中英

Generate script sql from “Entities” of spring-data-jdbc

I need to create sql script using spring-data-jdbc. Using spring-data-jpa I have no problems, but I want to know if there is the possibility of performing the scripts automatically using spring-data-jdbc

I achived it using spring-data-jpa, but I can not find information for spring-data-jdbc.

Can you help me ?, please.

#spring-data-jpa
spring:
 jpa:
    properties:
      javax:
        persistence:
          schema-generation:
            create-source: metadata
            scripts:
              action: drop-and-create
              drop-target : .\src\main\resources\drop.sql
              create-target: .\src\main\resources\create-script.sql

Thanks in advance.

This is not yet supported by Spring Data JDBC.

There is an issue for it you may want to watch: https://jira.spring.io/browse/DATAJDBC-338

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM