Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有 spring 和 jpa 持久单元的 hibernate 3.6.x。无论如何在创建模式之前运行 sql 脚本?
我需要运行一些简单的 sql 语句来创建数据库、模式和激活 postgis。否则创建表会失败。
用于创建数据库、模式和激活 postgis 的简单 sql 语句
您必须“手动”创建数据库和至少一个用户。Hibernate 不能做所有事情。
您可以使用注释和 jdbc 连接运行一些 SQL @PostConstuct,但您仍然首先需要一个 DB 和适当的用户才能进行连接。
@PostConstuct
(我不知道postgis是什么)