<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Grails Neo4j plugin 0.2 released</title>
	<atom:link href="http://blog.armbruster-it.de/2010/03/grails-neo4j-plugin-0-2-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.armbruster-it.de/2010/03/grails-neo4j-plugin-0-2-released/</link>
	<description>Real world fun with Java, Grails, Groovy, Zope, Plone, Linux and much others.</description>
	<lastBuildDate>Sat, 07 Jan 2012 17:55:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: ajeesh</title>
		<link>http://blog.armbruster-it.de/2010/03/grails-neo4j-plugin-0-2-released/comment-page-1/#comment-799</link>
		<dc:creator>ajeesh</dc:creator>
		<pubDate>Fri, 07 Oct 2011 11:54:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.armbruster-it.de/?p=87#comment-799</guid>
		<description>please ignore this was not running it in the scope of transaction hence the entities were not getting persisted.</description>
		<content:encoded><![CDATA[<p>please ignore this was not running it in the scope of transaction hence the entities were not getting persisted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ajeesh</title>
		<link>http://blog.armbruster-it.de/2010/03/grails-neo4j-plugin-0-2-released/comment-page-1/#comment-798</link>
		<dc:creator>ajeesh</dc:creator>
		<pubDate>Fri, 07 Oct 2011 05:57:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.armbruster-it.de/?p=87#comment-798</guid>
		<description>Was trying to repeat the example above with grails 1.3.7 and the latest neo4j plugin with
	void testSaveWithADynamicProperty() {
		def unit = new Trackable();
		unit.name=&quot;Project-A&quot;;
		unit.save();
		assert null == unit.iAmADynamicProperty
		unit.iAmADynamicProperty=&quot;XXX&quot;;
		
		assert &quot;XXX&quot; == unit.iAmADynamicProperty;
	}

But it produces a

junit.framework.AssertionFailedError: java.lang.AssertionError: instance must be persisted to use non-declared properties. Expression: delegate.node
am i missing something?</description>
		<content:encoded><![CDATA[<p>Was trying to repeat the example above with grails 1.3.7 and the latest neo4j plugin with<br />
	void testSaveWithADynamicProperty() {<br />
		def unit = new Trackable();<br />
		unit.name=&#8221;Project-A&#8221;;<br />
		unit.save();<br />
		assert null == unit.iAmADynamicProperty<br />
		unit.iAmADynamicProperty=&#8221;XXX&#8221;;</p>
<p>		assert &#8220;XXX&#8221; == unit.iAmADynamicProperty;<br />
	}</p>
<p>But it produces a</p>
<p>junit.framework.AssertionFailedError: java.lang.AssertionError: instance must be persisted to use non-declared properties. Expression: delegate.node<br />
am i missing something?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Armbruster</title>
		<link>http://blog.armbruster-it.de/2010/03/grails-neo4j-plugin-0-2-released/comment-page-1/#comment-737</link>
		<dc:creator>Stefan Armbruster</dc:creator>
		<pubDate>Fri, 31 Dec 2010 21:07:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.armbruster-it.de/?p=87#comment-737</guid>
		<description>I assume this is a limitation in GORM: a GORM relationship might not have properties attached to it. Of course you might put away with the standard GORM methods and use the native Neo4j API.</description>
		<content:encoded><![CDATA[<p>I assume this is a limitation in GORM: a GORM relationship might not have properties attached to it. Of course you might put away with the standard GORM methods and use the native Neo4j API.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Polymathicus</title>
		<link>http://blog.armbruster-it.de/2010/03/grails-neo4j-plugin-0-2-released/comment-page-1/#comment-736</link>
		<dc:creator>Polymathicus</dc:creator>
		<pubDate>Fri, 31 Dec 2010 20:10:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.armbruster-it.de/?p=87#comment-736</guid>
		<description>Thanks for this excellent post! One question: 

how do I get an association to acquire data properties? 

A simple example: suppose I have two grails domain classes, say Community and Person, and Community hasMany [members: Person]. Now, suppose I want to mark the membership by some qualifier, say active/inactive, so that the edge in neo4j knows it. How am I going to do that? 

An obvious solution is to promote  Membership to be a domain class, and being active a property there. Is there any other way?</description>
		<content:encoded><![CDATA[<p>Thanks for this excellent post! One question: </p>
<p>how do I get an association to acquire data properties? </p>
<p>A simple example: suppose I have two grails domain classes, say Community and Person, and Community hasMany [members: Person]. Now, suppose I want to mark the membership by some qualifier, say active/inactive, so that the edge in neo4j knows it. How am I going to do that? </p>
<p>An obvious solution is to promote  Membership to be a domain class, and being active a property there. Is there any other way?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Armbruster</title>
		<link>http://blog.armbruster-it.de/2010/03/grails-neo4j-plugin-0-2-released/comment-page-1/#comment-671</link>
		<dc:creator>Stefan Armbruster</dc:creator>
		<pubDate>Mon, 19 Jul 2010 13:53:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.armbruster-it.de/?p=87#comment-671</guid>
		<description>It&#039; @Neo4jIndexed</description>
		<content:encoded><![CDATA[<p>It&#8217; @Neo4jIndexed</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giuseppe Acito</title>
		<link>http://blog.armbruster-it.de/2010/03/grails-neo4j-plugin-0-2-released/comment-page-1/#comment-670</link>
		<dc:creator>Giuseppe Acito</dc:creator>
		<pubDate>Mon, 19 Jul 2010 13:22:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.armbruster-it.de/?p=87#comment-670</guid>
		<description>Hi again Stefan: is the correct syntax is @Neo4jIndex or @@Neo4jIndexed ?
Thanks!
Giuseppe</description>
		<content:encoded><![CDATA[<p>Hi again Stefan: is the correct syntax is @Neo4jIndex or @@Neo4jIndexed ?<br />
Thanks!<br />
Giuseppe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neo4j News: Update on Neo4j Ruby bindings &#124; Ruby WebDev Insider</title>
		<link>http://blog.armbruster-it.de/2010/03/grails-neo4j-plugin-0-2-released/comment-page-1/#comment-516</link>
		<dc:creator>Neo4j News: Update on Neo4j Ruby bindings &#124; Ruby WebDev Insider</dc:creator>
		<pubDate>Fri, 12 Mar 2010 12:48:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.armbruster-it.de/?p=87#comment-516</guid>
		<description>[...] Armbruster IT Blog » Grails Neo4j plugin 0.2 released [...]</description>
		<content:encoded><![CDATA[<p>[...] Armbruster IT Blog » Grails Neo4j plugin 0.2 released [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#160; Versión 0.2 del plugin Neo4J liberada&#160;-&#160;Observatorio de Grails</title>
		<link>http://blog.armbruster-it.de/2010/03/grails-neo4j-plugin-0-2-released/comment-page-1/#comment-515</link>
		<dc:creator>&#160; Versión 0.2 del plugin Neo4J liberada&#160;-&#160;Observatorio de Grails</dc:creator>
		<pubDate>Fri, 12 Mar 2010 11:09:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.armbruster-it.de/?p=87#comment-515</guid>
		<description>[...] información sobre Grails Neo4J plugin v0.2 (traducido al [...]</description>
		<content:encoded><![CDATA[<p>[...] información sobre Grails Neo4J plugin v0.2 (traducido al [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Neubauer</title>
		<link>http://blog.armbruster-it.de/2010/03/grails-neo4j-plugin-0-2-released/comment-page-1/#comment-512</link>
		<dc:creator>Peter Neubauer</dc:creator>
		<pubDate>Thu, 11 Mar 2010 03:55:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.armbruster-it.de/?p=87#comment-512</guid>
		<description>Very cool Stefan, tested it and it works directly!

/peter</description>
		<content:encoded><![CDATA[<p>Very cool Stefan, tested it and it works directly!</p>
<p>/peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mnk2551</title>
		<link>http://blog.armbruster-it.de/2010/03/grails-neo4j-plugin-0-2-released/comment-page-1/#comment-510</link>
		<dc:creator>mnk2551</dc:creator>
		<pubDate>Thu, 11 Mar 2010 01:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.armbruster-it.de/?p=87#comment-510</guid>
		<description>RT @darthvader42: [New Post] Grails Neo4j plugin 0.2 released - via @twitoaster http://blog.armbruster-it.de/2010/03/gra... #grails #neo4j</description>
		<content:encoded><![CDATA[<p>RT @darthvader42: [New Post] Grails Neo4j plugin 0.2 released &#8211; via @twitoaster <a href="http://blog.armbruster-it.de/2010/03/gra.." rel="nofollow">http://blog.armbruster-it.de/2010/03/gra..</a>. #grails #neo4j</p>
]]></content:encoded>
	</item>
</channel>
</rss>

