21469 [main] ERROR org.hibernate.tool.hbm2ddl.SchemaUpdate - Unsuccessful: alter table XSW_Member add constraint FK838C939D331B7A56 foreign key (orgId) references XSW_Organization
21469 [main] ERROR org.hibernate.tool.hbm2ddl.SchemaUpdate - ORA-02267: 列类型与引用的列类型不兼容
数据类型的问题吧。你传过去的数据类型和数据库中字段的属性类型不符。例如你数据库定义了int 传过去的却是字符串"12" ,而不是数字12
你自己加的测试数据类型有错?