<?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 for Continuous Reconsideration</title>
	<atom:link href="http://carinae.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://carinae.net</link>
	<description>Carlos Vara&#039;s writings about software development</description>
	<lastBuildDate>Thu, 22 Jul 2010 08:30:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4496</generator>
	<item>
		<title>Comment on Layered architecture with Hibernate and Spring 3 by Bo</title>
		<link>http://carinae.net/2009/11/layered-architecture-with-hibernate-and-spring-3/comment-page-1/#comment-458</link>
		<dc:creator>Bo</dc:creator>
		<pubDate>Thu, 22 Jul 2010 08:30:56 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=59#comment-458</guid>
		<description>I tried your example and created a controller to test it.

I got an exception &quot;org.hibernate.HibernateException: No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here&quot; with the following code. How can I fix it without adding proxy-target-class=”true”? Thanks.



@Controller
public class MyController {

    private UserService userService;

    @Autowired
    public MyController(UserService userService) {
        this.userService = userService;
    }

    @RequestMapping(&quot;/{page}&quot;)
    public ModelAndView category(@PathVariable String page) {
        ModelAndView mav = new ModelAndView();
        mav.addObject(&quot;page&quot;, page);
        userService.createUser(new User(&quot;Dummy&quot;, 30));
        mav.setViewName(&quot;/index&quot;);
        return mav;
    }</description>
		<content:encoded><![CDATA[<p>I tried your example and created a controller to test it.</p>
<p>I got an exception &#8220;org.hibernate.HibernateException: No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here&#8221; with the following code. How can I fix it without adding proxy-target-class=”true”? Thanks.</p>
<p>@Controller<br />
public class MyController {</p>
<p>    private UserService userService;</p>
<p>    @Autowired<br />
    public MyController(UserService userService) {<br />
        this.userService = userService;<br />
    }</p>
<p>    @RequestMapping(&#8220;/{page}&#8221;)<br />
    public ModelAndView category(@PathVariable String page) {<br />
        ModelAndView mav = new ModelAndView();<br />
        mav.addObject(&#8220;page&#8221;, page);<br />
        userService.createUser(new User(&#8220;Dummy&#8221;, 30));<br />
        mav.setViewName(&#8220;/index&#8221;);<br />
        return mav;<br />
    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reliable execution of persistent transactional asynchronous tasks using only Spring by Michael Cervantes</title>
		<link>http://carinae.net/2010/05/execution-persistent-transactional-tasks-with-spring/comment-page-1/#comment-450</link>
		<dc:creator>Michael Cervantes</dc:creator>
		<pubDate>Wed, 21 Jul 2010 03:12:58 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=207#comment-450</guid>
		<description>Nice contribution, will be trying this out.</description>
		<content:encoded><![CDATA[<p>Nice contribution, will be trying this out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reliable execution of persistent transactional asynchronous tasks using only Spring by Carlos Vara</title>
		<link>http://carinae.net/2010/05/execution-persistent-transactional-tasks-with-spring/comment-page-1/#comment-400</link>
		<dc:creator>Carlos Vara</dc:creator>
		<pubDate>Mon, 05 Jul 2010 21:04:45 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=207#comment-400</guid>
		<description>I shared a template project which shows this system working:

http://github.com/CarlosVara/spring-async-persistent-tasks</description>
		<content:encoded><![CDATA[<p>I shared a template project which shows this system working:</p>
<p><a href="http://github.com/CarlosVara/spring-async-persistent-tasks" rel="nofollow">http://github.com/CarlosVara/spring-async-persistent-tasks</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reliable execution of persistent transactional asynchronous tasks using only Spring by Carlos Vara</title>
		<link>http://carinae.net/2010/05/execution-persistent-transactional-tasks-with-spring/comment-page-1/#comment-397</link>
		<dc:creator>Carlos Vara</dc:creator>
		<pubDate>Sun, 04 Jul 2010 23:05:44 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=207#comment-397</guid>
		<description>Almost everything is there, but I will probably create a github repo with the code this week.</description>
		<content:encoded><![CDATA[<p>Almost everything is there, but I will probably create a github repo with the code this week.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reliable execution of persistent transactional asynchronous tasks using only Spring by Gareth</title>
		<link>http://carinae.net/2010/05/execution-persistent-transactional-tasks-with-spring/comment-page-1/#comment-377</link>
		<dc:creator>Gareth</dc:creator>
		<pubDate>Wed, 30 Jun 2010 23:01:03 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=207#comment-377</guid>
		<description>Hi ,

Thanks for this article. Would it be possible to include the source code for the entire project?</description>
		<content:encoded><![CDATA[<p>Hi ,</p>
<p>Thanks for this article. Would it be possible to include the source code for the entire project?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Layered architecture with Hibernate and Spring 3 by Carlos Vara</title>
		<link>http://carinae.net/2009/11/layered-architecture-with-hibernate-and-spring-3/comment-page-1/#comment-306</link>
		<dc:creator>Carlos Vara</dc:creator>
		<pubDate>Thu, 03 Jun 2010 18:27:35 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=59#comment-306</guid>
		<description>app-config.xml is generally associated with Spring MVC. For this tutorial, as the layering stops at the service layer and no presentation code is added, the file shouldn&#039;t be needed.</description>
		<content:encoded><![CDATA[<p>app-config.xml is generally associated with Spring MVC. For this tutorial, as the layering stops at the service layer and no presentation code is added, the file shouldn&#8217;t be needed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Layered architecture with Hibernate and Spring 3 by Giancasa</title>
		<link>http://carinae.net/2009/11/layered-architecture-with-hibernate-and-spring-3/comment-page-1/#comment-285</link>
		<dc:creator>Giancasa</dc:creator>
		<pubDate>Tue, 25 May 2010 10:36:49 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=59#comment-285</guid>
		<description>Very good!!!

Thanks</description>
		<content:encoded><![CDATA[<p>Very good!!!</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Layered architecture with Hibernate and Spring 3 by pkach00</title>
		<link>http://carinae.net/2009/11/layered-architecture-with-hibernate-and-spring-3/comment-page-1/#comment-228</link>
		<dc:creator>pkach00</dc:creator>
		<pubDate>Mon, 26 Apr 2010 18:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=59#comment-228</guid>
		<description>Heh... Used this tutorial. Seems one MAJOR thing missing... 
You should tell to put  into app-config.xml

I was fighting with errors half of the day :-\</description>
		<content:encoded><![CDATA[<p>Heh&#8230; Used this tutorial. Seems one MAJOR thing missing&#8230;<br />
You should tell to put  into app-config.xml</p>
<p>I was fighting with errors half of the day :-\</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Integration of JSR 303 bean validation standard and Wicket 1.4 by David</title>
		<link>http://carinae.net/2009/12/integration-of-jsr-303-bean-validation-standard-and-wicket-1-4/comment-page-1/#comment-169</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 07 Apr 2010 12:41:38 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=135#comment-169</guid>
		<description>I got it working! Carlos, thanks!!!

This line in UserRegistrationPanel.java

add(new Jsr303FormValidator(usernameInput, passwordInput, passwordVerificationInput, ageInput));

Should be:

add(new Jsr303FormValidator(emailInput, passwordInput, passwordVerificationInput, ageInput));</description>
		<content:encoded><![CDATA[<p>I got it working! Carlos, thanks!!!</p>
<p>This line in UserRegistrationPanel.java</p>
<p>add(new Jsr303FormValidator(usernameInput, passwordInput, passwordVerificationInput, ageInput));</p>
<p>Should be:</p>
<p>add(new Jsr303FormValidator(emailInput, passwordInput, passwordVerificationInput, ageInput));</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Layered architecture with Hibernate and Spring 3 by Carlos Vara</title>
		<link>http://carinae.net/2009/11/layered-architecture-with-hibernate-and-spring-3/comment-page-1/#comment-138</link>
		<dc:creator>Carlos Vara</dc:creator>
		<pubDate>Wed, 17 Mar 2010 13:08:25 +0000</pubDate>
		<guid isPermaLink="false">http://carinae.net/?p=59#comment-138</guid>
		<description>Make sure that your service implementation class actually implements the interface HistoricalPriceService.

If you are coding a new Spring application, it is usually a good idea to adhere to the principle of coding to interfaces, and having to use proxy-target-class=”true” usually means the opposite.</description>
		<content:encoded><![CDATA[<p>Make sure that your service implementation class actually implements the interface HistoricalPriceService.</p>
<p>If you are coding a new Spring application, it is usually a good idea to adhere to the principle of coding to interfaces, and having to use proxy-target-class=”true” usually means the opposite.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
