I\'ve been playing around with a very simple JPA example and am trying to tweak it to an existing database. But I can\'t get past this error. (Below.) It just has to be s
You have declared your Class as:
@Table( name = "foobar" ) public class FooBar {
You need to write the Class Name for the search. from FooBar
FooBar