請高手幫我看一下這是怎麼回事

yunzhongfan發表於2009-10-10
我做了一個簡單的hibernate.xml檔案,用hibernate的SchemaExport生成表,但老是提示:org.hibernate.MappingException: Resource: com/bank.hbm.xml not found

這個是測試頁面程式碼:
public class test {
@Test
public void create() throws Exception{
Configuration config = new Configuration().configure()
.addClass(bank.class);
//生成並輸出sql到檔案(當前目錄)和資料庫
SchemaExport schema = new SchemaExport(config);
schema.create(true, true);
}
}

相關文章