gpt4 book ai didi

java - NoSuchMethodError JDBI

转载 作者:行者123 更新时间:2023-11-29 12:33:28 28 4
gpt4 key购买 nike

我正在尝试使用这样的方法在我的类中创建一个表某物:

void createTab() {
DBI dbi = new DBI(DBURL, DBUSER, DBPASS);

BindExamples dao = dbi.open(BindExamples.class);

dao.createSomethingTable();
dao.close();
}

我的BindExamples界面:

public interface BindExamples

{
@SqlUpdate("insert into something (id, name) values (:id, :name)")
void insert(@Bind("id") int id, @Bind("name") String name);

@SqlUpdate("delete from something where name = :it")
void deleteByName(@Bind("name") String name);

@SqlSelect("select text from articles where id = :id")
String selectText(@Bind("id") int id);

@SqlUpdate("create table something (id int primary key, name varchar(100))")
void createSomethingTable();

void close();
}

结果:我遇到错误:

Exception in thread "main" java.lang.NoSuchMethodError:java.lang.Object.createSomethingTable()V
at org.skife.jdbi.v2.sqlobject.CloseInternalDoNotUseThisClass$$EnhancerByCGLIB$$7c60a575.CGLIB$createSomethingTable$8(<generated>)
at org.skife.jdbi.v2.sqlobject.CloseInternalDoNotUseThisClass$$EnhancerByCGLIB$$7c60a575$$FastClassByCGLIB$$c61ecaca.invoke(<generated>)
at org.skife.jdbi.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228)
at org.skife.jdbi.v2.sqlobject.PassThroughHandler.invoke(PassThroughHandler.java:21)
at org.skife.jdbi.v2.sqlobject.SqlObject.invoke(SqlObject.java:147)
at org.skife.jdbi.v2.sqlobject.SqlObject$1.intercept(SqlObject.java:60)
at org.skife.jdbi.v2.sqlobject.CloseInternalDoNotUseThisClass$$EnhancerByCGLIB$$7c60a575.createSomethingTable(<generated>)
at DBAccessJDBC.saveObjectAPI(DBAccessJDBC.java:58)
at MainMain.main(MainMain.java:7)

有什么想法我做错了什么吗?我正在尝试与http://jdbi.codehaus.org/five_minute_intro/中的相同

我使用:

  • JDBI 库 2.48.2 版本
  • eclipse
  • mySql

感谢您的帮助!

最佳答案

jdbi中没有@SqlSelect注解。你能说一下,你使用这个注释来自哪个库吗?我将注释更改为@SqlQuery,它工作正常。它将扫描所有方法,并根据注释分配处理程序。由于未知注释,扫描可能会失败。

关于java - NoSuchMethodError JDBI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27130812/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com