1

显然我不能在使用静态导入的单元测试中使用用 APT 生成的类。(Maven示例项目可以在这里下载)

如果以下示例类

import com.mysema.query.jpa.impl.JPAQuery;

public class UserStore {

    public void something() {
        new JPAQuery(null).from(QUser.user).list(QUser.user.login);
    }

}

改为

import static something.QUser.user;
import com.mysema.query.jpa.impl.JPAQuery;

public class UserStore {

    public void something() {
        new JPAQuery(null).from(user).list(user.login);
    }

}

构建过程(mvn clean install)将失败:

[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.466s
[INFO] Finished at: Wed May 30 16:05:40 CEST 2012
[INFO] Final Memory: 18M/150M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project apt-bug: Compilation failure: Compilation failure:
...

完整的错误信息

这是否意味着我不能在单元测试中将这些生成的类与静态导入一起使用,或者 pom.xml 文件中是否存在问题?

编辑:

POM 文件: http: //pastebin.com/gvycZmXD

4

2 回答 2

3

这可能与https://github.com/mysema/querydsl/issues/158有关

我还没有时间对此进行调查。

编辑

这显然已在 Java 7 中得到修复

于 2012-05-31T06:29:54.143 回答
0

我假设问题出在静态导入中,因为错误消息说导入的 QUser.user 既不是类也不是接口。这看起来用户只是 QUser 类的一个属性,它可以解释错误消息。

/home/xxx/apt-bug/src/main/java/something/UserStore.java:3: cannot find symbol
symbol  : class QUser
location: package something
import static something.QUser.user;
                       ^
/home/xxx/apt-bug/src/main/java/something/UserStore.java:3: static import only from classes and interfaces
import static something.QUser.user;
^
于 2012-05-30T17:41:16.223 回答