休止状態の POJO クラスとマッピングを使用して Postgresql db にアクセスしています。「OCS」と呼ばれる新しいスキーマを追加しましたが、クラスとマッピングを生成できません。hibernate.cfg.xml は次のとおりです。
<property name='hibernate.connection.driver_class'>org.postgresql.Driver</property>
<property name='hibernate.connection.url'>jdbc:postgresql://test/test_mytest</property>
<property name='hibernate.connection.username'>username</property>
<property name='hibernate.connection.password'>password</property>
<property name='hibernate.connection.pool_size'>10</property>
<property name='show_sql'>true</property>
<property name='dialect'>org.hibernate.dialect.PostgreSQLDialect</property>