当前位置: 首页 > 工具软件 > JDBI > 使用案例 >

java 对象查询_java – JDBI对象查询

糜正业
2023-12-01

之前我曾经使用JDBI作为

Java持久性的东西,但它始终是流畅的API而不是对象API.现在尝试使用Object API.

我有一个非常简单的DAO对象:

public interface PersonDAO {

@SqlQuery("insert into person(id,first_name,last_name,position) values(:id,:firstName,:lastName,:position)")

void insertPerson(@Bind("id") Integer id,

@Bind("firstName") String firstName,

@Bind("lastName") String lastName,

@Bind("position") String position);

}

在mysql中测试了查询,它工作正常,但在单元测试中运行它:

@Test

public void testInsertPerson() {

PersonDAO personDao = dao.getRegHandle().attach(PersonDAO.class);

personDao.insertPerson(888888,"Tom", "Ford", "Manager");

}

我得到一个例外:

java.lang.IllegalStateException: Method

com.hrweb.dao.PersonDAO#insertPerson is annotated as if it should

return a value, but the method is void.

我在这做错了什么?

 类似资料: