@Column(name="open")
Hibernateでsqlserverダイアレクトを使用する。
[SchemaUpdate] Unsuccessful: create table auth_session (id numeric(19,0) identity not null, active tinyint null, creation_date datetime not null, last_modified datetime not null, maxidle int null, maxlive int null, open tinyint null, sessionid varchar(255) not null, user_id numeric(19,0) not null, primary key (id), unique (sessionid))
[SchemaUpdate] Incorrect syntax near the keyword 'open'.
テーブルを作成するときに、hibernateが引用符で囲まれた識別子を使用することを期待していました。
これを処理する方法についてのアイデアはありますか...フィールドの名前を変更する以外に?