当前位置: 代码迷 >> Java Web开发 >> 在mvn工程中使用spring发布osgi服务泛型编译报错:The type List is not generic;解决思路
  详细解决方案

在mvn工程中使用spring发布osgi服务泛型编译报错:The type List is not generic;解决思路

热度:500   发布时间:2016-04-16 22:04:33.0
在mvn工程中使用spring发布osgi服务泛型编译报错:The type List is not generic;
想在maven工程中使用spring发布osgi服务,一直报
Caused by: java.lang.ClassNotFoundException: org.osgi.framework.ServiceReference


后来找到对应的依赖是:
		<dependency>
<groupId>org.eclipse.osgi</groupId>
<artifactId>org.eclipse.osgi.services</artifactId>
<version>3.2.100.v20100503</version>
</dependency>


结果编译时一直提示:The type List is not generic; it cannot be parameterized with arguments

请问有人知道原因吗?
------解决方案--------------------
类型不匹配,你找 你 list 的 地方。看是不是包导入错了 。
  相关解决方案