0
當我用彈簧引導起動數據JPA和我設置spring.jpa.hibernate.ddl-汽車:創建和這樣春天JPA spring.jpa.hibernate.ddl-AUTO:創建ORA-02000:缺少ALWAYS關鍵字
@Entity
public class BaseOnDoubleValue extends DoubleData {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
@Column(name = "uuid",length = 40)
private long uuid;
private int baseid;
我的實體,然後我得到了這樣的
2015-11-19 11:07:02.438 ERROR 5876 --- [ main] org.hibernate.tool.hbm2ddl.SchemaExport : HHH000389: Unsuccessful: create table base_on_double_value (uuid bigint generated by default as identity, baseid integer not null, date_time timestamp, error integer not null, id integer not null, quality smallint not null, base_value double, primary key (uuid))
2015-11-19 11:07:02.438 ERROR 5876 --- [ main] org.hibernate.tool.hbm2ddl.SchemaExport : ORA-02000: missing ALWAYS keyword
一個eror你能幫助我嗎?
使用[hmb2ddl.auto是所有惡根](http://stackoverflow.com/questions/673802/how-to-import-initial-數據到數據庫與 - 休眠/ 22572463#22572463);)你真的應該閱讀,因爲你需要了解引擎蓋下發生了什麼以及爲什麼你應該使用數據庫變更管理一個合適的工具的時候了。 –
@MarkusWMahlberg我認爲它適合我。我想要一個可以在碼頭集裝箱中工作的自給自足的項目。我不想在一個容器中執行SQL(這意味着可怕的),並感謝您給我這個建議,我會避免在生產ENV用這個。 – SaintKnight
Liquibase將從您的應用程序中執行....在初始化過程中... –