我有一堆用于CRUD操作的Sybase SP,我需要在中间层创建服务。
所有SP都已到位,但中间层必须从头开始构建。
是否有一种简单的方法或工具可以将存储过程参数转换为java类属性?
例如:
create proc insertEmployee( @id int, @floor int )
到
public class Employee{
private int id;
private int floor;
}
等...
谢谢!
答案 0 :(得分:0)
我不知道这样的工具。您可以使用数据库元数据信息编写自己的生成器:Connection.getMetadata()