When I go to build this application, I get errors on all of the ArrayLists. I was able to resolve them by giving them explicit types. For example on line 64 of the Products Controller:
List<Tag> tags = new ArrayList<>();
Gives me an error: illegal start of type

When I change it to:
List<Tag> tags = new ArrayList<Tag>();
The application compiles and runs just fine. I'm not experienced with Java at all so this might be an oversight with my configuration.
When I go to build this application, I get errors on all of the ArrayLists. I was able to resolve them by giving them explicit types. For example on line 64 of the Products Controller:
Gives me an error: illegal start of type

When I change it to:
The application compiles and runs just fine. I'm not experienced with Java at all so this might be an oversight with my configuration.