我有问题。当我用maven编译我的应用程序时,我收到以下错误:
[错误]无法执行目标 org.apache.maven.plugins:Maven的编译器插件:2.3.2:编译 项目myproject-core上的(default-compile):编译失败
[ERROR] /home/group/Check/19-01-2017---13-40-59/myproject/src/main/java/repository/dao/documents/FileDAO.java:[213,24] 错误:无法访问Comparable
在这一行和列中有:
public Integer insertFile(File file) throws Exception {
Properties p = Util.getProperties("prop.properties");
MyFacade.setup(p.getProperty("url).toString(),
Integer.valueOf(p.getProperty("port").toString()).intValue(), p.getProperty("service").toString(),
p.getProperty("user").toString(), p.getProperty("pwd").toString());
final DocumentsFile documentFile = MyFacade.creaFile(p.getProperty("codDoc").toString(), file);
MyFacade.teardown();
return documentFile.getId(); //this is the line 213}
可能是什么问题?
感谢您的回复