34

我怎样才能在 jDBI 中执行这样的事情?

@SqlQuery("select id from foo where name in <list of names here>")
List<Integer> getIds(@Bind("nameList") List<String> nameList);

桌子:foo(id int,name varchar)

类似于来自 myBatis 的 @SelectProvider。

有人问过类似的问题How do I create a Dynamic Sql Query at runtime using JDBI's Sql Object API? ,但不知何故,我不清楚答案。

4

4 回答 4

38

这应该有效:

@SqlQuery("select id from foo where name in (<nameList>)")
List<Integer> getIds(@BindIn("nameList") List<String> nameList);

不要忘记使用以下方法注释包含此方法的类:

@UseStringTemplate3StatementLocator

注释(因为 JDBI 在底层使用 Apache StringTemplate 来进行此类替换)。另请注意,使用此注释,您不能在不转义的情况下在 SQL 查询中使用“<”字符(因为它是 StringTemplate 使用的特殊符号)。

于 2013-10-23T07:20:39.877 回答
8

使用@Define 注解在 jDBI 中构建动态查询。例子:

@SqlUpdate("insert into <table> (id, name) values (:id, :name)")
public void insert(@Define("table") String table, @BindBean Something s);

@SqlQuery("select id, name from <table> where id = :id")
public Something findById(@Define("table") String table, @Bind("id") Long id);
于 2013-10-17T11:16:23.817 回答
8

使用 PostgreSQL,我能够使用 ANY 比较并将集合绑定到数组来实现这一点。

public interface Foo {
    @SqlQuery("SELECT id FROM foo WHERE name = ANY (:nameList)")
    List<Integer> getIds(@BindStringList("nameList") List<String> nameList);
}

@BindingAnnotation(BindStringList.BindFactory.class)
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER})
public @interface BindStringList {
    String value() default "it";

    class BindFactory implements BinderFactory {
        @Override
        public Binder build(Annotation annotation) {
            return new Binder<BindStringList, Collection<String>>() {
                @Override
                public void bind(SQLStatement<?> q, BindStringList bind, Collection<String> arg) {
                    try {
                        Array array = q.getContext().getConnection().createArrayOf("varchar", arg.toArray());
                        q.bindBySqlType(bind.value(), array, Types.ARRAY);
                    } catch (SQLException e) {
                        // handle error
                    }
                }
            };
        }
    }
}

注意:ANY 不是 ANSI SQL 标准的一部分,因此这会产生对 PostgreSQL 的硬依赖。

于 2016-07-29T23:21:21.457 回答
7

如果你使用的是 JDBI 3 Fluent API,你可以使用bindList()一个属性:

List<String> keys = new ArrayList<String>()
keys.add("user_name");
keys.add("street");

handle.createQuery("SELECT value FROM items WHERE kind in (<listOfKinds>)")
      .bindList("listOfKinds", keys)
      .mapTo(String.class)
      .list();

// Or, using the 'vararg' definition
handle.createQuery("SELECT value FROM items WHERE kind in (<varargListOfKinds>)")
      .bindList("varargListOfKinds", "user_name", "docs", "street", "library")
      .mapTo(String.class)
      .list();

请注意查询字符串如何使用<listOfKinds>而不是通常的:listOfKinds.

文档在这里:http: //jdbi.org/#_binding_arguments

于 2019-04-30T12:53:55.827 回答