RooEntity « Roo « Spring Q&A





1. Spring data Neo4j @NodeEntiry and Roo @RooEntity conflict    stackoverflow.com

When i try to annotate a POJO with both @NodeEntity and @RooEntity i got following error on the *_Roo_Entity IDT:

can't override T org.springframework.data.neo4j.core.NodeBacked.persist() with void       ...

2. @RooEntity(versionField = "") throws NPE (WebScaffoldMetadata.java:1231)    forum.springsource.org

NullPointerException at org.springframework.roo.addon.web.mvc.controller.W ebScaffoldMetadata.getDatePatterns(WebScaffoldMeta data.java:1231) when @RooEntity(versionField = "") Is this normal behavior or should I Jira it? Grts

3. Changes to @RooEntity don't reflect in code    forum.springsource.org

Changes to @RooEntity don't reflect in code I have a project that was not the result of a db reverse engineering. It was built entirely in roo (1.1.3). However, I'd like ...

4. Composite key integration in RooEntity    forum.springsource.org

Hi all, Anyone knows how to solve this please : 1. I created an Entity with a composite key @RooEntity(identifierType = Pfet_EnumPK.class) Code: @RooJavaBean @RooToString @RooEntity(identifierType = Pfet_EnumPK.class) public class Pfet_Enum ...

5. @RooEntity with transient    forum.springsource.org

Hi, I'm trying to create a transient method in an entity created with roo, but presents problems when I run deploy. ie: Code: @RooJavaBean @RooToString @RooEntity public class Person { private ...

6. @RooEntity (persistMethod="", removeMethod="", ...) does not remove methods from .AJ    forum.springsource.org

Using STS 2.7.1... I have an entity that is read only... I thought by change @RooEntity annotation, Roo will automatically remove appropriate methods persists() and remove() from the xxx_Roo_Entity.aj however this ...

7. Neo4j @NodeEntiry and Roo @RooEntity conflict    forum.springsource.org

Neo4j @NodeEntiry and Roo @RooEntity conflict Hi, When i try to annotate a POJO with both @NodeEntity and @RooEntity i got following error on the *_Roo_Entity IDT: Code: can't override T ...

8. @RooEntity(persistMethod="") still generates a persist method in the ITD    forum.springsource.org

Not sure if this is normal or not, but I thought that if you added something like persistMethod="" to the @RooEntity annotation, it would instruct Roo to not generate the particular ...

9. Roo 1.1.5: adding findAllMethod="" to @RooEntity doesn't remove findAll in the .aj    forum.springsource.org

Roo 1.1.5: adding findAllMethod="" to @RooEntity doesn't remove findAll in the .aj Hello: I'd like to avoid the findAll method in the Entities, not just in the Integration test (in the ...





10. Please add versionColumn to RooEntity.    forum.springsource.org

Hi, We have a legacy database schema where all version columns have a name with an underscore. I know there are a couple of workarounds for that but it would be ...

11. VersionField = "" on @RooEntity error in ROO 1.1.0.M1    forum.springsource.org

Hi, when using following annotation on an entity: @RooEntity(versionField = "") and subsequently generating a Spring MVC controller, using "controller scaffold...." following error is displayed in the roo shell: NullPointerException at ...

12. NPE in GwtMetadata for @RooEntity(versionField = "")    forum.springsource.org

JIRA ref: https://jira.springframework.org/browse/ROO-1403 So, either DBRE should not generate empty version annotation. Or GWT addon should skip routine related to versioning in case there is no real version field defined. BTW, ...