想在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 的 地方。看是不是包导入错了 。