构建应用程序时出现错误:
[错误] /D:/.../TestDao.java:[5,43]包org.apache.poi.ss.formula.functions不存在 [错误] /D:/.../TestDao.java:[32,10]找不到符号 [错误]符号:T类
这是我的TestDaoImpl:
public List<T> findDataByFilter(List<FiltreInfo> listFiltreInfo, List<String> depts, Object T) {
StringBuilder queryBuilder = this.getSelectQuery(depts, T);
TypedQuery<T> contentQuery = this.getEntityManager().createQuery(queryBuilder.toString(), (Class<T>) T);
this.setParameter(listFiltreInfo, contentQuery, depts);
return contentQuery.getResultList();
}
pom.xml
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.12</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.12</version>
</dependency>
库文件已成功导入,并且代码运行正常。 但是我在构建中遇到此错误。
我该怎么做才能解决此问题?预先感谢。