I have the following code:
List<Product> product = new List<Product>();
The error:
Cannot instantiate the type List<Product>
Product is an Entity in my EJB project. Why I'm getting this error?
|
I have the following code:
The error:
|
||||
|
|
|||
|
|
|
List is an interface. You need a specific class in the end so either try
or
Whichever suit your needs. |
|||||||||||||
|
:)– Matt Ball Mar 14 at 19:30