No primary or single public constructor found for interface java.util.List - and no default constructor found either
时间: 2023-11-25 10:41:15 浏览: 204
这个错误是由于在接收前端传来的List参数时,没有加@RequestParam注解导致的。@RequestParam注解用于将HTTP请求中的参数绑定到方法的参数上。如果没有添加该注解,Spring会尝试通过构造函数实例化List对象,但是由于List是一个接口,没有默认的构造函数,所以就会报错"No primary or single public constructor found for interface java.util.List - and no default constructor found either"。
相关问题
java.lang.IllegalStateException: No primary or single public constructor found for interface java.util.List - and no default constructor found either
这个错误通常是因为你的代码中使用了一个接口类型的变量,而没有提供一个具体的实现类来初始化该变量。
比如说,你这样声明一个 List 变量:
```
List<String> list;
```
但是没有对其进行初始化或赋值,那么当你在代码中使用 list 变量时,就会出现上述的错误。
为了解决这个问题,你需要使用一个具体的 List 实现类来初始化该变量,比如说 ArrayList:
```
List<String> list = new ArrayList<>();
```
或者在声明变量时就进行初始化:
```
List<String> list = Arrays.asList("a", "b", "c");
```
这样就能够避免上述错误的发生了。
no primary or single public constructor found for interface java.util.list
这是一个Java编程中的错误提示,意思是接口java.util.List没有找到主要或单一的公共构造函数。在Java中,接口不能直接被实例化,因此必须使用其实现类来实例化。所以这个错误可能是因为你在某个地方尝试用List接口来实例化而导致的。
阅读全文