<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Marten Deinum</title>
	<atom:link href="http://mdeinum.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mdeinum.wordpress.com</link>
	<description>Java, Spring, Web Flow rants</description>
	<lastBuildDate>Sun, 11 Oct 2009 07:08:47 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on One application, per client database by Marten Deinum</title>
		<link>http://mdeinum.wordpress.com/2007/01/05/one-application-per-client-database/#comment-61</link>
		<dc:creator>Marten Deinum</dc:creator>
		<pubDate>Sun, 11 Oct 2009 07:08:47 +0000</pubDate>
		<guid isPermaLink="false">http://mdeinum.wordpress.com/2007/01/05/one-application-per-client-database/#comment-61</guid>
		<description>Mike,

It has been a while but we also used hibernate and the only thing we switched was the datasource. You really don&#039;t want to have 50 hibernate sessionfactories in memory. They are heavy to create. So as long as the schemas are the same use 1 sessionfactory and simply switch the datasource.

Drawback is that you also would have to do something similair for 2nd level caching (switching caches also) but that shouldn&#039;t be a problem either.</description>
		<content:encoded><![CDATA[<p>Mike,</p>
<p>It has been a while but we also used hibernate and the only thing we switched was the datasource. You really don&#8217;t want to have 50 hibernate sessionfactories in memory. They are heavy to create. So as long as the schemas are the same use 1 sessionfactory and simply switch the datasource.</p>
<p>Drawback is that you also would have to do something similair for 2nd level caching (switching caches also) but that shouldn&#8217;t be a problem either.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on One application, per client database by mikejbrady</title>
		<link>http://mdeinum.wordpress.com/2007/01/05/one-application-per-client-database/#comment-60</link>
		<dc:creator>mikejbrady</dc:creator>
		<pubDate>Sun, 11 Oct 2009 07:05:41 +0000</pubDate>
		<guid isPermaLink="false">http://mdeinum.wordpress.com/2007/01/05/one-application-per-client-database/#comment-60</guid>
		<description>It is nice to stumble upon this! The database side of this is exactly our situation and this is the approach that seems most reasonable to me. The implementation seems like a no brainer in straight JDBC, but we use hibernate, so I look forward to looking at your code.

Another of our engineers advocates merging all the client databases into a single database and modifying the app accordingly. That sounds like a nightmare to me on several levels, including the risk to customer data.

I have just started some prototype work on a branch of our application and look forward to letting you know how it goes.</description>
		<content:encoded><![CDATA[<p>It is nice to stumble upon this! The database side of this is exactly our situation and this is the approach that seems most reasonable to me. The implementation seems like a no brainer in straight JDBC, but we use hibernate, so I look forward to looking at your code.</p>
<p>Another of our engineers advocates merging all the client databases into a single database and modifying the app accordingly. That sounds like a nightmare to me on several levels, including the risk to customer data.</p>
<p>I have just started some prototype work on a branch of our application and look forward to letting you know how it goes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Migrate classic J2EE to Spring (Step 1) by Migrate classic J2EE to Spring (Step 1) (revised) &#171; Marten Deinum</title>
		<link>http://mdeinum.wordpress.com/2009/05/06/migrate-classic-j2ee-to-spring/#comment-59</link>
		<dc:creator>Migrate classic J2EE to Spring (Step 1) (revised) &#171; Marten Deinum</dc:creator>
		<pubDate>Fri, 02 Oct 2009 17:10:48 +0000</pubDate>
		<guid isPermaLink="false">http://mdeinum.wordpress.com/?p=21#comment-59</guid>
		<description>[...]  Tags: Conversion, J2EE, Java, Migration, Spring trackback  A couple of months ago I wrote a step 1 on migrating a classis J(2)EE application to a spring based application. Recently I had some time again on my hands and after studying the application and also after some [...]</description>
		<content:encoded><![CDATA[<p>[...]  Tags: Conversion, J2EE, Java, Migration, Spring trackback  A couple of months ago I wrote a step 1 on migrating a classis J(2)EE application to a spring based application. Recently I had some time again on my hands and after studying the application and also after some [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Securing Spring Web Flow by leenab</title>
		<link>http://mdeinum.wordpress.com/2007/06/13/securing-spring-web-flow/#comment-58</link>
		<dc:creator>leenab</dc:creator>
		<pubDate>Wed, 02 Apr 2008 10:03:01 +0000</pubDate>
		<guid isPermaLink="false">http://mdeinum.wordpress.com/2007/06/13/securing-spring-web-flow/#comment-58</guid>
		<description>Hello sir,

In my application I&#039;m trying to secure the web-flows using ACEGI. Your article helped me to get the direction on this.

The interceptor for the flows, &quot;FlowSecurityInterceptor&quot;  is in the package:
&quot;org.springframework.webflow.security&quot; . But in the spring-webflow jar I could not find the security package.

Can you please help in knowing from where can I get the binaries for the same so that I can use in my application.


Regards,
Leena</description>
		<content:encoded><![CDATA[<p>Hello sir,</p>
<p>In my application I&#8217;m trying to secure the web-flows using ACEGI. Your article helped me to get the direction on this.</p>
<p>The interceptor for the flows, &#8220;FlowSecurityInterceptor&#8221;  is in the package:<br />
&#8220;org.springframework.webflow.security&#8221; . But in the spring-webflow jar I could not find the security package.</p>
<p>Can you please help in knowing from where can I get the binaries for the same so that I can use in my application.</p>
<p>Regards,<br />
Leena</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Securing Spring Web Flow by kobiav</title>
		<link>http://mdeinum.wordpress.com/2007/06/13/securing-spring-web-flow/#comment-57</link>
		<dc:creator>kobiav</dc:creator>
		<pubDate>Thu, 07 Feb 2008 19:56:03 +0000</pubDate>
		<guid isPermaLink="false">http://mdeinum.wordpress.com/2007/06/13/securing-spring-web-flow/#comment-57</guid>
		<description>Hi,

I need a sample configuration file for acegi as well as the flow.xml configuration.

I followed your presentation but I am having lots of trouble with Acegi and SWF.

My latest problem is:
&quot;org.acegisecurity.AuthenticationCredentialsNotFoundException: An Authentication object was not found in the SecurityContext&quot;

Please help!!
Thanks,
Kobi</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I need a sample configuration file for acegi as well as the flow.xml configuration.</p>
<p>I followed your presentation but I am having lots of trouble with Acegi and SWF.</p>
<p>My latest problem is:<br />
&#8220;org.acegisecurity.AuthenticationCredentialsNotFoundException: An Authentication object was not found in the SecurityContext&#8221;</p>
<p>Please help!!<br />
Thanks,<br />
Kobi</p>
]]></content:encoded>
	</item>
</channel>
</rss>
