Groovy + JPA + Spring not working - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T00:27:18Zhttp://stackoverflow.com/feeds/question/770709http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/770709/groovy-jpa-spring-not-working0Groovy + JPA + Spring not workingPablo Fernandez2009-04-21T01:25:19Z2009-04-21T17:40:40Z
<p>I have the following java class:</p>
<pre><code>package domain;
//imports
@Entity
public class User {
@Id @GeneratedValue
private long id;
private String name;
private String password;
private String mail;
//Getters, Setters and Constructors
}
</code></pre>
<p>When I change the file extension to .groovy, the application stops working. In fact it throws this stacktrace:</p>
<blockquote>
<p>org.springframework.dao.InvalidDataAccessApiUsageException:
Unknown entity: domain.User; nested
exception is
java.lang.IllegalArgumentException:
Unknown entity: domain.User</p>
</blockquote>
<p>I'm reading <a href="http://rads.stackoverflow.com/amzn/click/0978739299" rel="nofollow">this book</a> and the author states that any groovy class can take the place of a java class just changing its extension. So why does spring and JPA don't recognize my groovy class?</p>
<p>Has anyone used this technologies successfully?</p>
http://stackoverflow.com/questions/770709/groovy-jpa-spring-not-working/770997#7709970Answer by Rob Beardow for Groovy + JPA + Spring not workingRob Beardow2009-04-21T04:02:38Z2009-04-21T04:02:38Z<p>Both Groovy (.groovy) and Java (.java) source files will compile to bytecode (.class) files. There's no file extension renaming necessary.</p>
<p>If you have groovy code, you need to use the groovy compiler to generate a .class file, much like a .java file will generate a .class file with javac.</p>
<p>It doesn't seem to be a JPA or Spring issue.</p>
http://stackoverflow.com/questions/770709/groovy-jpa-spring-not-working/773745#7737452Answer by Bill James for Groovy + JPA + Spring not workingBill James2009-04-21T17:40:40Z2009-04-21T17:40:40Z<p>There's not a lot of info here, so time to guess.</p>
<p>Seems like Spring can't find the User.class file. The Groovy and Java compilers may have different output paths, and the Groovy output path may not be in your classpath, or your deployment set.</p>
<p>Check your War, is User.class in it? Is it in WEB-INF/classes/domain? If not, then the Groovy output folder doesn't seem to be in your deployment. Try changing the Groovy output folder to match your Java output folder.</p>