vote up 2 vote down star

By default, grails seems to return <class name>:<id> for toString() of an Java domain object. That's not at all what I want of course, so I tried to @Override the toString() to return what I want. When I tried grails generate-all Tagtype, I got the following error:

java.lang.LinkageError: loader constraint violation: loader (instance of <bootloader>) previously initiated loading for a differen
t type with name "org/w3c/dom/NamedNodeMap"

My code is below. Any help would be greatly appreciated.

@Entity
@Table(name = "tagtype", catalog = "tigger")
@SuppressWarnings("serial")
public class Tagtype implements Serializable {

    /**
     * Attribute id.
     */
    private Integer id;

    /**
     * Attribute tagtype.
     */
    private String tagtype;

    /**
     * Attribute regexpression
     */
     private Regexpression regexpression;	

 . . .  

  @Override public String toString() {
    StringBuilder result = new StringBuilder();

    result.append(this.tagtype);

    return result.toString();
  }

}
flag

58% accept rate
Grails version? – Robert Munteanu Jun 22 at 20:42

1 Answer

vote up 1 vote down check

I've overriden toString() in Grails domain classes without any problems, so that can't be the reason. This blog suggests it could be a result of name collisions, either temporary (have you tried running "grails clean"?) or perhaps your class name Tagtype collides with some grails internals.

Another thing you could try is using different versions of Grails, especially the latest 1.1.1 if you aren't already using that. This ML post describes an identical error message that was apparently version dependant.

link|flag
Thanks for your reply. Just to make sure my question is clear, I'm trying to override toString in a JAVA class, NOT a Grails class. I am using 1.1.1 and I did do grails clean. – Brad Rhoads Jun 22 at 21:14
Since there's less "magic" happening in Java classes, there should be even less potential for problems. According to the article I linked to, it could be a collision between JARs required by a grails plugin and your own project – Michael Borgwardt Jun 22 at 21:40
It really didn't make sense that toString() should have caused a problem. Unfortunately, I made the mistake of changing more than 1 thing at a time. I was also playing with a couple of plugins (laszlo & zk). I'm not sure which one was causing the problem, but it any case it was an environment issue. I created a new app, regened and everything was fine. And toString() works as expected. Thanks again for pointing me in the right direction. – Brad Rhoads Jun 22 at 22:18

Your Answer

Get an OpenID
or

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