hibernate.reveng.xmlを生成したいのですが、 hibernate.cfg.xmlの「hibernate.connection.URL」は変数です。
jdbc:jtds:sqlserver://${database.server.name}:1433/XXX_DB
私の質問は、hibernate-toolに変数が定義されている場所を知らせる方法です。
hibernate.reveng.xmlを生成したいのですが、 hibernate.cfg.xmlの「hibernate.connection.URL」は変数です。
jdbc:jtds:sqlserver://${database.server.name}:1433/XXX_DB
私の質問は、hibernate-toolに変数が定義されている場所を知らせる方法です。
Ant タスク内で、.propertiesファイル (このコンテンツを持つ)へのパスを指定できます。
hibernate.connection.url=jdbc:mysql://127.0.0.1:1433/XXX_DB
hibernate.connection.username=xxx
hibernate.connection.password=yyy
次に、ant タスクで次のようにします。
<hibernatetool ...>
<jdbcconfiguration configurationfile="pathTo/your.cfg.cml"
propertyfile="pathTo/your.file.properties"/>
お役に立てば幸いです、ディエゴ。