<?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 bogdan@j3e</title>
	<atom:link href="http://www.bserban.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bserban.org</link>
	<description>Web, Java, J2EE, SaaS, Tips&#38;Tricks</description>
	<lastBuildDate>Sun, 28 Feb 2010 02:12:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on MySQL Index Performance by Tom</title>
		<link>http://www.bserban.org/2009/02/mysql-index-performance/comment-page-1/#comment-513</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sun, 28 Feb 2010 02:12:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.bserban.org/?p=73#comment-513</guid>
		<description>Thanks for this very clear explanation, really useful.</description>
		<content:encoded><![CDATA[<p>Thanks for this very clear explanation, really useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple MVC for Flex and AIR by Madhu</title>
		<link>http://www.bserban.org/2009/02/simple-mvc-for-flex-and-air/comment-page-1/#comment-493</link>
		<dc:creator>Madhu</dc:creator>
		<pubDate>Wed, 20 Jan 2010 20:22:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.bserban.org/?p=119#comment-493</guid>
		<description>Hi, 

Thanks , for posting  the example.I request you 
to post the same example  by  connecting to a remote object. i think that will many of us and get an idea who it looks in real environment.

Thanks &amp; Regards
Madhu</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>Thanks , for posting  the example.I request you<br />
to post the same example  by  connecting to a remote object. i think that will many of us and get an idea who it looks in real environment.</p>
<p>Thanks &amp; Regards<br />
Madhu</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Put together Struts2, JPA, Hibernate and Spring by bserban</title>
		<link>http://www.bserban.org/2009/05/put-together-struts2-jpa-hibernate-and-spring/comment-page-1/#comment-492</link>
		<dc:creator>bserban</dc:creator>
		<pubDate>Wed, 20 Jan 2010 16:41:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.bserban.org/?p=158#comment-492</guid>
		<description>Hi, 

.ftl are from Freemarker templare engine. It is similar to JSP. 

You could map a default action that goes anyway you like. A default action can be added like this:

&lt;default-action-ref name=&quot;__here_goes_the_action_name&quot;/&gt;

This way the / will go to the default action.</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>.ftl are from Freemarker templare engine. It is similar to JSP. </p>
<p>You could map a default action that goes anyway you like. A default action can be added like this:</p>
<p><default -action-ref name="__here_goes_the_action_name"/></p>
<p>This way the / will go to the default action.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Put together Struts2, JPA, Hibernate and Spring by preetu</title>
		<link>http://www.bserban.org/2009/05/put-together-struts2-jpa-hibernate-and-spring/comment-page-1/#comment-491</link>
		<dc:creator>preetu</dc:creator>
		<pubDate>Wed, 20 Jan 2010 09:50:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.bserban.org/?p=158#comment-491</guid>
		<description>hi ..i created complete project while running project call these two links: /authors/list.html or /books/list.html k fine then i created 2 html files inside webcontent then i got error(There is no Action mapped for namespace / and action name list. - [unknown location]
	at com.opensymphony.xwork2.DefaultActionProxy.prepare(DefaultActionProxy.java:177) and i not understootd what is those two .ftl struts.xml mapped to two .ftl file inside WEB-INF obviously if create .html this will trough error .Should i create .html file were should i create and what is the use of .ftl file</description>
		<content:encoded><![CDATA[<p>hi ..i created complete project while running project call these two links: /authors/list.html or /books/list.html k fine then i created 2 html files inside webcontent then i got error(There is no Action mapped for namespace / and action name list. &#8211; [unknown location]<br />
	at com.opensymphony.xwork2.DefaultActionProxy.prepare(DefaultActionProxy.java:177) and i not understootd what is those two .ftl struts.xml mapped to two .ftl file inside WEB-INF obviously if create .html this will trough error .Should i create .html file were should i create and what is the use of .ftl file</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Put together Struts2, JPA, Hibernate and Spring by eugene</title>
		<link>http://www.bserban.org/2009/05/put-together-struts2-jpa-hibernate-and-spring/comment-page-1/#comment-488</link>
		<dc:creator>eugene</dc:creator>
		<pubDate>Thu, 14 Jan 2010 18:43:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.bserban.org/?p=158#comment-488</guid>
		<description>After many hours, I figured out what I was doing wrong. In the struts.xml instead of referencing the location of the class (i.e. com.mypackage.action.MyItemAction) within the tag:

-struts-
  -package name=&quot;mydbitems&quot;-
    -action name=&quot;list&quot; class=&quot;com.mypackage.action.myItemAction&quot;

I should have been referencing the bean which was specified in the applicationContext.xml (or exampleContext.xml) file

-struts-
  -package name=&quot;mydbitems&quot;-
    -action name=&quot;list&quot; class=&quot;myitemAction&quot;

where myitemAction is defined in the exampleContext.xml as

-bean id=&quot;myitemAction&quot; scope=&quot;prototype&quot; class=&quot;com.mypackage.action.myItemAction&quot;-

Thanks for the initial response. I hope this helps someone who might be searching on a similar problem.</description>
		<content:encoded><![CDATA[<p>After many hours, I figured out what I was doing wrong. In the struts.xml instead of referencing the location of the class (i.e. com.mypackage.action.MyItemAction) within the tag:</p>
<p>-struts-<br />
  -package name=&#8221;mydbitems&#8221;-<br />
    -action name=&#8221;list&#8221; class=&#8221;com.mypackage.action.myItemAction&#8221;</p>
<p>I should have been referencing the bean which was specified in the applicationContext.xml (or exampleContext.xml) file</p>
<p>-struts-<br />
  -package name=&#8221;mydbitems&#8221;-<br />
    -action name=&#8221;list&#8221; class=&#8221;myitemAction&#8221;</p>
<p>where myitemAction is defined in the exampleContext.xml as</p>
<p>-bean id=&#8221;myitemAction&#8221; scope=&#8221;prototype&#8221; class=&#8221;com.mypackage.action.myItemAction&#8221;-</p>
<p>Thanks for the initial response. I hope this helps someone who might be searching on a similar problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple MVC for Flex and AIR by Flex and architecture &#124; Miscellaneous musings in beta</title>
		<link>http://www.bserban.org/2009/02/simple-mvc-for-flex-and-air/comment-page-1/#comment-487</link>
		<dc:creator>Flex and architecture &#124; Miscellaneous musings in beta</dc:creator>
		<pubDate>Thu, 14 Jan 2010 10:05:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.bserban.org/?p=119#comment-487</guid>
		<description>[...] dabbling in small projects, the work and investment needed is simply too big. I just found a good post, that goes right to the heart of the Model &#8211; View &#8211; Controller design pattern. It [...]</description>
		<content:encoded><![CDATA[<p>[...] dabbling in small projects, the work and investment needed is simply too big. I just found a good post, that goes right to the heart of the Model &#8211; View &#8211; Controller design pattern. It [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Put together Struts2, JPA, Hibernate and Spring by eugene</title>
		<link>http://www.bserban.org/2009/05/put-together-struts2-jpa-hibernate-and-spring/comment-page-1/#comment-486</link>
		<dc:creator>eugene</dc:creator>
		<pubDate>Tue, 12 Jan 2010 08:27:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.bserban.org/?p=158#comment-486</guid>
		<description>after spending hours on this today, it appears that autowiring is the problem. I&#039;m having trouble disabling it. I tried setting the rule in a struts.properties file - nothing works. is there a way to disable it?</description>
		<content:encoded><![CDATA[<p>after spending hours on this today, it appears that autowiring is the problem. I&#8217;m having trouble disabling it. I tried setting the rule in a struts.properties file &#8211; nothing works. is there a way to disable it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Put together Struts2, JPA, Hibernate and Spring by eugene</title>
		<link>http://www.bserban.org/2009/05/put-together-struts2-jpa-hibernate-and-spring/comment-page-1/#comment-485</link>
		<dc:creator>eugene</dc:creator>
		<pubDate>Mon, 11 Jan 2010 19:18:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.bserban.org/?p=158#comment-485</guid>
		<description>Hi Bogdan. Thanks for writing back. Here&#039;s the breakdown of what I have

GenericService.java (simple interface as above)
UserDaoService.java (service implementing generic)
ActionItemService.java (another service)

extendedContext.xml (the file contains the following...)



&lt;!--DAO--&gt;



&lt;!--SERVICES--&gt;

  


  


&lt;!--ACTIONS--&gt;

  


  




When I remove the settings for either the User bean or the ActionItem bean, leaving only one, everything works fine. However, when I have them both there I receive the error.

I tried modifying my struts.properties file with various autowire modes:
struts.objectFactory.spring.autoWire = type
struts.objectFactory.spring.autoWire = name (def)
struts.objectFactory.spring.autoWire = auto
struts.objectFactory.spring.autoWire = constructor

none worked (same error, except with &quot;constructor&quot; - that completely broke the application)

Thanks for your help.</description>
		<content:encoded><![CDATA[<p>Hi Bogdan. Thanks for writing back. Here&#8217;s the breakdown of what I have</p>
<p>GenericService.java (simple interface as above)<br />
UserDaoService.java (service implementing generic)<br />
ActionItemService.java (another service)</p>
<p>extendedContext.xml (the file contains the following&#8230;)</p>
<p><!--DAO--></p>
<p><!--SERVICES--></p>
<p><!--ACTIONS--></p>
<p>When I remove the settings for either the User bean or the ActionItem bean, leaving only one, everything works fine. However, when I have them both there I receive the error.</p>
<p>I tried modifying my struts.properties file with various autowire modes:<br />
struts.objectFactory.spring.autoWire = type<br />
struts.objectFactory.spring.autoWire = name (def)<br />
struts.objectFactory.spring.autoWire = auto<br />
struts.objectFactory.spring.autoWire = constructor</p>
<p>none worked (same error, except with &#8220;constructor&#8221; &#8211; that completely broke the application)</p>
<p>Thanks for your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Put together Struts2, JPA, Hibernate and Spring by bserban</title>
		<link>http://www.bserban.org/2009/05/put-together-struts2-jpa-hibernate-and-spring/comment-page-1/#comment-484</link>
		<dc:creator>bserban</dc:creator>
		<pubDate>Mon, 11 Jan 2010 15:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.bserban.org/?p=158#comment-484</guid>
		<description>Mick,

It looks to me more an transaction error. Check your transaction delimiters on the methods that don;t persist the values.</description>
		<content:encoded><![CDATA[<p>Mick,</p>
<p>It looks to me more an transaction error. Check your transaction delimiters on the methods that don;t persist the values.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Put together Struts2, JPA, Hibernate and Spring by bserban</title>
		<link>http://www.bserban.org/2009/05/put-together-struts2-jpa-hibernate-and-spring/comment-page-1/#comment-483</link>
		<dc:creator>bserban</dc:creator>
		<pubDate>Mon, 11 Jan 2010 15:43:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.bserban.org/?p=158#comment-483</guid>
		<description>Hi Eugene

Sorry for such a late answer. I need more info about your error but i guess you are using autowire or you used GenericService as type instead of AuthorService or BookService.

Little i can say without see the code.

Cheers.</description>
		<content:encoded><![CDATA[<p>Hi Eugene</p>
<p>Sorry for such a late answer. I need more info about your error but i guess you are using autowire or you used GenericService as type instead of AuthorService or BookService.</p>
<p>Little i can say without see the code.</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
