在不使用映射文件的情况下调用Spring3 + ibatis中的存储过程

时间:2012-09-18 09:27:03

标签: spring ibatis

我有一个应用程序,我使用的是Spring3和ibatis。在我的应用程序中,我使用不同的spring注释来选择,删除,更新等查询。现在我想使用spring注释调用存储过程。我没有在我的应用程序中使用ibatis映射文件。那我怎么能在我的程序中调用这个存储过程呢?我的程序也返回了temp_table。

我也在尝试下面的代码,但它不起作用..

@Select(value = "{call wfm_task_display(${processId}, ${locationId})}")
@Options(statementType = StatementType.CALLABLE)
@Results(value = {
        @org.apache.ibatis.annotations.Result
        (property = "field1", column = "field1"),
        @org.apache.ibatis.annotations.Result
        (property = "field2", column = "field2")})

有什么建议吗?

0 个答案:

没有答案