<?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"
	>
<channel>
	<title>Comments for Here Be Beasties</title>
	<atom:link href="http://herebebeasties.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://herebebeasties.com</link>
	<description>Alastair Maw's small soap box.</description>
	<pubDate>Sun, 23 Nov 2008 13:35:10 +0000</pubDate>
	
		<item>
		<title>Comment on JSP and Wicket, sitting in a tree&#8230; by Klaus</title>
		<link>http://herebebeasties.com/2007-03-01/jsp-and-wicket-sitting-in-a-tree/#comment-8931</link>
		<dc:creator>Klaus</dc:creator>
		<pubDate>Fri, 17 Oct 2008 08:22:38 +0000</pubDate>
		<guid isPermaLink="false">http://herebebeasties.com/2007-03-01/jsp-and-wicket-sitting-in-a-tree/#comment-8931</guid>
		<description>Hi,

can you explain how to user your EmbedJsp page in context with wicket child and extend? When i tried to put it in a div container, it will always rentered outside the div. It where rendered above the rest of the page. The jsp only contains : 
and rendered was this:

Apache Tomcat/5.0.25




	JSP-Page: [test.jsp] embedded in Wicket


	
		
			JSP-Page: [test.jsp] embedded in Wicket

		
		
			
		[JSP CONTENT]
	
		
	
		


</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>can you explain how to user your EmbedJsp page in context with wicket child and extend? When i tried to put it in a div container, it will always rentered outside the div. It where rendered above the rest of the page. The jsp only contains :<br />
and rendered was this:</p>
<p>Apache Tomcat/5.0.25</p>
<p>	JSP-Page: [test.jsp] embedded in Wicket</p>
<p>			JSP-Page: [test.jsp] embedded in Wicket</p>
<p>		[JSP CONTENT]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicket gets Guicy by Die Ruhe Liegt Im Eichenhain &#187; Wicket becomes Guicelicious</title>
		<link>http://herebebeasties.com/2007-06-20/wicket-gets-guicy/#comment-8404</link>
		<dc:creator>Die Ruhe Liegt Im Eichenhain &#187; Wicket becomes Guicelicious</dc:creator>
		<pubDate>Sun, 28 Sep 2008 15:53:19 +0000</pubDate>
		<guid isPermaLink="false">http://herebebeasties.com/2007-06-20/wicket-is-guicy/#comment-8404</guid>
		<description>[...] post any source code explaining how to integrate Guice and Wicket. You can read about this here or in several other blogs mentioned on the Wicket [...]</description>
		<content:encoded><![CDATA[<p>[...] post any source code explaining how to integrate Guice and Wicket. You can read about this here or in several other blogs mentioned on the Wicket [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicket Guice updates by Thomas</title>
		<link>http://herebebeasties.com/2007-11-07/wicket-guice-updates/#comment-4633</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Mon, 09 Jun 2008 09:16:56 +0000</pubDate>
		<guid isPermaLink="false">http://herebebeasties.com/2007-11-07/wicket-guice-updates/#comment-4633</guid>
		<description>How does Wicket handle references of e.g. a non-serializable service implementation that is passed to a model as Alastair proposed? I assume this will throw a java.io.NotSerializableException. In my opinion Models should be injectable in Wicket like Components. In particular when working with loadable, detachable models you will likely want to inject a service that is responsible for loading the data. If the model a reusable public class, component-only injection will not help.
Example:
&lt;code&gt;
public class ContactModel extends LoadableDetachableModel {
	
	private Long contactId;
	
	@Inject
	private ContactService service;
	
	public ContactModel(Long contactId) {
	   this.contactId = contactId;
	}

	@Override
	protected Contact load() {
	return service.getContact(contactId);
	}
	
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>How does Wicket handle references of e.g. a non-serializable service implementation that is passed to a model as Alastair proposed? I assume this will throw a java.io.NotSerializableException. In my opinion Models should be injectable in Wicket like Components. In particular when working with loadable, detachable models you will likely want to inject a service that is responsible for loading the data. If the model a reusable public class, component-only injection will not help.<br />
Example:<br />
<code><br />
public class ContactModel extends LoadableDetachableModel {</p>
<p>	private Long contactId;</p>
<p>	@Inject<br />
	private ContactService service;</p>
<p>	public ContactModel(Long contactId) {<br />
	   this.contactId = contactId;<br />
	}</p>
<p>	@Override<br />
	protected Contact load() {<br />
	return service.getContact(contactId);<br />
	}</p>
<p>}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicket Guice updates by Alastair</title>
		<link>http://herebebeasties.com/2007-11-07/wicket-guice-updates/#comment-4460</link>
		<dc:creator>Alastair</dc:creator>
		<pubDate>Wed, 07 May 2008 13:48:17 +0000</pubDate>
		<guid isPermaLink="false">http://herebebeasties.com/2007-11-07/wicket-guice-updates/#comment-4460</guid>
		<description>Wicket's Spring and Guice injection don't work inside models, only inside components. Inject a field of a component, and pass that reference into your model. It'll do the right thing WRT serialization.</description>
		<content:encoded><![CDATA[<p>Wicket&#8217;s Spring and Guice injection don&#8217;t work inside models, only inside components. Inject a field of a component, and pass that reference into your model. It&#8217;ll do the right thing WRT serialization.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicket Guice updates by Callum</title>
		<link>http://herebebeasties.com/2007-11-07/wicket-guice-updates/#comment-4459</link>
		<dc:creator>Callum</dc:creator>
		<pubDate>Wed, 07 May 2008 13:33:41 +0000</pubDate>
		<guid isPermaLink="false">http://herebebeasties.com/2007-11-07/wicket-guice-updates/#comment-4459</guid>
		<description>Hi there,

I am trying to do guice injection inside a LoadableDetachableModel and for some reason the filed I inject remains null. Oddly I use the same injection statement for the same object in a Page elsewhere and it works fine. Am I doing something wrong?

Cheers,

Callum</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>I am trying to do guice injection inside a LoadableDetachableModel and for some reason the filed I inject remains null. Oddly I use the same injection statement for the same object in a Page elsewhere and it works fine. Am I doing something wrong?</p>
<p>Cheers,</p>
<p>Callum</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicket gets Guicy by Wicket-Guice and Warp-Persist &#124; Richards Blog</title>
		<link>http://herebebeasties.com/2007-06-20/wicket-gets-guicy/#comment-4354</link>
		<dc:creator>Wicket-Guice and Warp-Persist &#124; Richards Blog</dc:creator>
		<pubDate>Sat, 19 Apr 2008 18:06:08 +0000</pubDate>
		<guid isPermaLink="false">http://herebebeasties.com/2007-06-20/wicket-is-guicy/#comment-4354</guid>
		<description>[...] had already been looking at the wicket-guice project which provides support for Guice in [...]</description>
		<content:encoded><![CDATA[<p>[...] had already been looking at the wicket-guice project which provides support for Guice in [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicket Quickstart by Jonathan Locke</title>
		<link>http://herebebeasties.com/2007-10-07/wicket-quickstart/#comment-4274</link>
		<dc:creator>Jonathan Locke</dc:creator>
		<pubDate>Sat, 05 Apr 2008 05:12:03 +0000</pubDate>
		<guid isPermaLink="false">http://herebebeasties.com/2007-10-07/wicket-quickstart/#comment-4274</guid>
		<description>Nice!  

Would be an even cooler demo now with that new quickstart command line generator.</description>
		<content:encoded><![CDATA[<p>Nice!  </p>
<p>Would be an even cooler demo now with that new quickstart command line generator.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on London Wicket User Group is today! by Richard Wilkinson</title>
		<link>http://herebebeasties.com/2008-04-02/london-wicket-user-group-is-today/#comment-4257</link>
		<dc:creator>Richard Wilkinson</dc:creator>
		<pubDate>Thu, 03 Apr 2008 10:19:54 +0000</pubDate>
		<guid isPermaLink="false">http://herebebeasties.com/2008-04-02/london-wicket-user-group-is-today/#comment-4257</guid>
		<description>Hi Al,

Thanks for you help last night, following your suggestion, I tried a wicket quickstart in tomcat.

Turns out the problem is a bug in tomcat 4, its fixed in tomcat 5 and 6.  It only occurs when you mount the page and on for example '/uk' and the url you give it is for example '/uk/anything'.

Will submit the quickstart as an example when I get chance.

Thanks,

Richard Wilkinson</description>
		<content:encoded><![CDATA[<p>Hi Al,</p>
<p>Thanks for you help last night, following your suggestion, I tried a wicket quickstart in tomcat.</p>
<p>Turns out the problem is a bug in tomcat 4, its fixed in tomcat 5 and 6.  It only occurs when you mount the page and on for example &#8216;/uk&#8217; and the url you give it is for example &#8216;/uk/anything&#8217;.</p>
<p>Will submit the quickstart as an example when I get chance.</p>
<p>Thanks,</p>
<p>Richard Wilkinson</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicket comes to the London Java Web User Group by Alastair</title>
		<link>http://herebebeasties.com/2007-08-13/wicket-comes-to-the-london-java-web-user-group/#comment-4183</link>
		<dc:creator>Alastair</dc:creator>
		<pubDate>Thu, 27 Mar 2008 15:41:06 +0000</pubDate>
		<guid isPermaLink="false">http://herebebeasties.com/2007-08-13/wicket-comes-to-the-london-java-web-user-group/#comment-4183</guid>
		<description>Actually, code for this is already up.
Check out londonwicket.org.</description>
		<content:encoded><![CDATA[<p>Actually, code for this is already up.<br />
Check out londonwicket.org.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wicket comes to the London Java Web User Group by Alastair</title>
		<link>http://herebebeasties.com/2007-08-13/wicket-comes-to-the-london-java-web-user-group/#comment-4182</link>
		<dc:creator>Alastair</dc:creator>
		<pubDate>Thu, 27 Mar 2008 15:40:12 +0000</pubDate>
		<guid isPermaLink="false">http://herebebeasties.com/2007-08-13/wicket-comes-to-the-london-java-web-user-group/#comment-4182</guid>
		<description>Code is coming soon, promise. :-)</description>
		<content:encoded><![CDATA[<p>Code is coming soon, promise. :-)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
