vote up 1 vote down star

I have a class Animal and an interface it inherits from IAnimal.

@MappedSuperclass
public class Animal implements Serializable, IAnimal{...}.

@Entity
public class Jaguar extends Animal{...}

My first question is, do I need to annotate the interface?

I asked this because I am getting this error when I run my tests:

Error compiling the query [SELECT s FROM animal s WHERE s.atype = :atype]. Unknown abstract schema type [animal]

If I remember correctly, before I added this interface it was working.

flag

63% accept rate

2 Answers

vote up 1 vote down check

This error is occurring because you spelled Animal with a common a in the query. Try this:

 SELECT s FROM Animal s WHERE s.atype = :atype
link|flag
vote up 0 vote down

Does

SELECT s FROM Animal s WHERE s.atype = :atype

work? (just changed the case of animal)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.