﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>BlogJava-robbie-最新评论</title><link>http://www.blogjava.net/robbie/CommentsRSS.aspx</link><description /><language>zh-cn</language><pubDate>Mon, 28 Jan 2013 02:59:21 GMT</pubDate><lastBuildDate>Mon, 28 Jan 2013 02:59:21 GMT</lastBuildDate><generator>cnblogs</generator><item><title>re: 随笔</title><link>http://www.blogjava.net/robbie/archive/2013/01/10/246274.html#394074</link><dc:creator>qz</dc:creator><author>qz</author><pubDate>Thu, 10 Jan 2013 08:06:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2013/01/10/246274.html#394074</guid><description><![CDATA[能否也给我下那个doc包，邮箱466784567@qq.com，不胜感激！！<img src ="http://www.blogjava.net/robbie/aggbug/394074.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">qz</a> 2013-01-10 16:06 <a href="http://www.blogjava.net/robbie/archive/2013/01/10/246274.html#394074#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的五种方式</title><link>http://www.blogjava.net/robbie/archive/2012/12/04/264003.html#392421</link><dc:creator>jianxia612</dc:creator><author>jianxia612</author><pubDate>Tue, 04 Dec 2012 07:25:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/12/04/264003.html#392421</guid><description><![CDATA[@jianxia612<br>针对第二种已经找到设置方法：&lt;bean id=&quot;taskServer&quot; parent=&quot;transactionBase&quot; &gt;<br>		&lt;property name=&quot;target&quot;&gt;<br>		&lt;bean class=&quot;com.abc.server.TaskServer&quot;&gt;<br>			&lt;property name=&quot;taskDao&quot; ref=&quot;taskDao&quot;/&gt;<br>		&lt;/bean&gt;	<br>		&lt;/property&gt;		<br>	&lt;/bean&gt;<img src ="http://www.blogjava.net/robbie/aggbug/392421.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">jianxia612</a> 2012-12-04 15:25 <a href="http://www.blogjava.net/robbie/archive/2012/12/04/264003.html#392421#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的五种方式</title><link>http://www.blogjava.net/robbie/archive/2012/12/04/264003.html#392403</link><dc:creator>jianxia612</dc:creator><author>jianxia612</author><pubDate>Tue, 04 Dec 2012 03:30:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/12/04/264003.html#392403</guid><description><![CDATA[还一个问题比较疑虑 userDao之中的name是自己可以随意命名的吧 你看我的jdbc配置如下 &lt;bean id=&quot;taskServer&quot; parent=&quot;transactionBase&quot;  class=&quot;com.abc.DataGatherTaskServer&quot;&gt;<br>		&lt;property name=&quot;taskDao&quot; &gt;<br>			&lt;ref bean=&quot;TaskDao&quot; /&gt;<br>		&lt;/property&gt;		<br>	&lt;/bean&gt; 其中transactionBase 在启动tomcat会出错！nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'transactionManager' of bean class [com.abc.TaskServer]: Bean property 'transactionManager' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter? 此处错误是我在dao之中为get,set 'transactionManager' ?<img src ="http://www.blogjava.net/robbie/aggbug/392403.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">jianxia612</a> 2012-12-04 11:30 <a href="http://www.blogjava.net/robbie/archive/2012/12/04/264003.html#392403#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的五种方式</title><link>http://www.blogjava.net/robbie/archive/2012/12/04/264003.html#392402</link><dc:creator>jianxia612</dc:creator><author>jianxia612</author><pubDate>Tue, 04 Dec 2012 03:22:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/12/04/264003.html#392402</guid><description><![CDATA[楼主 你的第二种配置方式 &lt;!-- 配置DAO --&gt;<br>     &lt;bean id=&quot;userDaoTarget&quot; class=&quot;com.bluesky.spring.dao.UserDaoImpl&quot;&gt;<br>         &lt;property name=&quot;sessionFactory&quot; ref=&quot;sessionFactory&quot; /&gt;<br>     &lt;/bean&gt;<br>     <br>     &lt;bean id=&quot;userDao&quot; parent=&quot;transactionBase&quot; &gt;  <br>         &lt;property name=&quot;target&quot; ref=&quot;userDaoTarget&quot; /&gt;   <br>     &lt;/bean&gt; 能否提供一下spring jdbctemplate方式配置呢<img src ="http://www.blogjava.net/robbie/aggbug/392402.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">jianxia612</a> 2012-12-04 11:22 <a href="http://www.blogjava.net/robbie/archive/2012/12/04/264003.html#392402#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的五种方式</title><link>http://www.blogjava.net/robbie/archive/2012/12/04/264003.html#392395</link><dc:creator>jianxia612</dc:creator><author>jianxia612</author><pubDate>Tue, 04 Dec 2012 02:21:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/12/04/264003.html#392395</guid><description><![CDATA[你这个有jdbctemplate的示例程序？<img src ="http://www.blogjava.net/robbie/aggbug/392395.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">jianxia612</a> 2012-12-04 10:21 <a href="http://www.blogjava.net/robbie/archive/2012/12/04/264003.html#392395#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的五种方式</title><link>http://www.blogjava.net/robbie/archive/2012/11/29/264003.html#392170</link><dc:creator>zeda</dc:creator><author>zeda</author><pubDate>Thu, 29 Nov 2012 01:51:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/11/29/264003.html#392170</guid><description><![CDATA[肯定是用第五种啦 呵呵 不过只是基于java5才能用<img src ="http://www.blogjava.net/robbie/aggbug/392170.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">zeda</a> 2012-11-29 09:51 <a href="http://www.blogjava.net/robbie/archive/2012/11/29/264003.html#392170#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 随笔</title><link>http://www.blogjava.net/robbie/archive/2012/11/15/246274.html#391363</link><dc:creator>jully_ir</dc:creator><author>jully_ir</author><pubDate>Thu, 15 Nov 2012 02:55:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/11/15/246274.html#391363</guid><description><![CDATA[我也想要那个doc包~~~邮箱：l-yaqi@163.com 多谢~~<img src ="http://www.blogjava.net/robbie/aggbug/391363.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">jully_ir</a> 2012-11-15 10:55 <a href="http://www.blogjava.net/robbie/archive/2012/11/15/246274.html#391363#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Kettle初探</title><link>http://www.blogjava.net/robbie/archive/2012/11/15/244464.html#391361</link><dc:creator>jully_ir</dc:creator><author>jully_ir</author><pubDate>Thu, 15 Nov 2012 02:53:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/11/15/244464.html#391361</guid><description><![CDATA[@chenzz<br>用PowerDesigner来做很方便，就是数据要重新抽取。不知道我理解的是否对哦~<img src ="http://www.blogjava.net/robbie/aggbug/391361.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">jully_ir</a> 2012-11-15 10:53 <a href="http://www.blogjava.net/robbie/archive/2012/11/15/244464.html#391361#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的五种方式</title><link>http://www.blogjava.net/robbie/archive/2012/10/16/264003.html#389654</link><dc:creator>webtomos</dc:creator><author>webtomos</author><pubDate>Tue, 16 Oct 2012 06:23:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/10/16/264003.html#389654</guid><description><![CDATA[@heyang思维导图<img src ="http://www.blogjava.net/robbie/aggbug/389654.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">webtomos</a> 2012-10-16 14:23 <a href="http://www.blogjava.net/robbie/archive/2012/10/16/264003.html#389654#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的五种方式</title><link>http://www.blogjava.net/robbie/archive/2012/09/03/264003.html#386857</link><dc:creator>北京青年</dc:creator><author>北京青年</author><pubDate>Mon, 03 Sep 2012 03:47:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/09/03/264003.html#386857</guid><description><![CDATA[强大<img src ="http://www.blogjava.net/robbie/aggbug/386857.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">北京青年</a> 2012-09-03 11:47 <a href="http://www.blogjava.net/robbie/archive/2012/09/03/264003.html#386857#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Struts2 + ExtJS 做的小程序源代码[未登录]</title><link>http://www.blogjava.net/robbie/archive/2012/08/24/257201.html#386159</link><dc:creator>波波</dc:creator><author>波波</author><pubDate>Thu, 23 Aug 2012 16:07:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/08/24/257201.html#386159</guid><description><![CDATA[最近不错啊。这里资源很好<img src ="http://www.blogjava.net/robbie/aggbug/386159.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">波波</a> 2012-08-24 00:07 <a href="http://www.blogjava.net/robbie/archive/2012/08/24/257201.html#386159#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的五种方式</title><link>http://www.blogjava.net/robbie/archive/2012/08/09/264003.html#385173</link><dc:creator>yushan</dc:creator><author>yushan</author><pubDate>Thu, 09 Aug 2012 10:47:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/08/09/264003.html#385173</guid><description><![CDATA[很不错，顶一个<img src ="http://www.blogjava.net/robbie/aggbug/385173.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">yushan</a> 2012-08-09 18:47 <a href="http://www.blogjava.net/robbie/archive/2012/08/09/264003.html#385173#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的五种方式</title><link>http://www.blogjava.net/robbie/archive/2012/05/21/264003.html#378665</link><dc:creator>free8rt</dc:creator><author>free8rt</author><pubDate>Mon, 21 May 2012 03:13:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/05/21/264003.html#378665</guid><description><![CDATA[@Transactional加在方法上就可以给某个方法加上事物了，比如增删改，加在service类上就是给所有方法都加上事物了<img src ="http://www.blogjava.net/robbie/aggbug/378665.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">free8rt</a> 2012-05-21 11:13 <a href="http://www.blogjava.net/robbie/archive/2012/05/21/264003.html#378665#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Struts2 + ExtJS 做的小程序源代码</title><link>http://www.blogjava.net/robbie/archive/2012/05/10/257201.html#377826</link><dc:creator>dandan</dc:creator><author>dandan</author><pubDate>Thu, 10 May 2012 09:37:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/05/10/257201.html#377826</guid><description><![CDATA[你这个项目有什么用啊，下都下不下来。<img src ="http://www.blogjava.net/robbie/aggbug/377826.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">dandan</a> 2012-05-10 17:37 <a href="http://www.blogjava.net/robbie/archive/2012/05/10/257201.html#377826#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的第五种方式 </title><link>http://www.blogjava.net/robbie/archive/2012/02/23/264003.html#370593</link><dc:creator>qch</dc:creator><author>qch</author><pubDate>Thu, 23 Feb 2012 07:33:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/02/23/264003.html#370593</guid><description><![CDATA[第五种方式  我试了试 在3.0下面，不德行<img src ="http://www.blogjava.net/robbie/aggbug/370593.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">qch</a> 2012-02-23 15:33 <a href="http://www.blogjava.net/robbie/archive/2012/02/23/264003.html#370593#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的五种方式</title><link>http://www.blogjava.net/robbie/archive/2012/02/15/264003.html#370048</link><dc:creator>laifu901</dc:creator><author>laifu901</author><pubDate>Wed, 15 Feb 2012 13:05:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2012/02/15/264003.html#370048</guid><description><![CDATA[哥<img src ="http://www.blogjava.net/robbie/aggbug/370048.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">laifu901</a> 2012-02-15 21:05 <a href="http://www.blogjava.net/robbie/archive/2012/02/15/264003.html#370048#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的五种方式[未登录]</title><link>http://www.blogjava.net/robbie/archive/2011/11/07/264003.html#363055</link><dc:creator>啊啊</dc:creator><author>啊啊</author><pubDate>Mon, 07 Nov 2011 07:17:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2011/11/07/264003.html#363055</guid><description><![CDATA[犀利，困惑我2天的东西，被你点通了<img src ="http://www.blogjava.net/robbie/aggbug/363055.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">啊啊</a> 2011-11-07 15:17 <a href="http://www.blogjava.net/robbie/archive/2011/11/07/264003.html#363055#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的五种方式[未登录]</title><link>http://www.blogjava.net/robbie/archive/2011/11/05/264003.html#362852</link><dc:creator>xx</dc:creator><author>xx</author><pubDate>Sat, 05 Nov 2011 07:10:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2011/11/05/264003.html#362852</guid><description><![CDATA[强<img src ="http://www.blogjava.net/robbie/aggbug/362852.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">xx</a> 2011-11-05 15:10 <a href="http://www.blogjava.net/robbie/archive/2011/11/05/264003.html#362852#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的五种方式</title><link>http://www.blogjava.net/robbie/archive/2011/11/03/264003.html#362626</link><dc:creator>tian012</dc:creator><author>tian012</author><pubDate>Thu, 03 Nov 2011 10:39:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2011/11/03/264003.html#362626</guid><description><![CDATA[牛人，非常感谢 <img src ="http://www.blogjava.net/robbie/aggbug/362626.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">tian012</a> 2011-11-03 18:39 <a href="http://www.blogjava.net/robbie/archive/2011/11/03/264003.html#362626#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Spring事务配置的五种方式</title><link>http://www.blogjava.net/robbie/archive/2011/11/03/264003.html#362625</link><dc:creator>tian012</dc:creator><author>tian012</author><pubDate>Thu, 03 Nov 2011 10:37:00 GMT</pubDate><guid>http://www.blogjava.net/robbie/archive/2011/11/03/264003.html#362625</guid><description><![CDATA[@xiaohaiben007<br>牛人，非常感谢<img src ="http://www.blogjava.net/robbie/aggbug/362625.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/robbie/" target="_blank">tian012</a> 2011-11-03 18:37 <a href="http://www.blogjava.net/robbie/archive/2011/11/03/264003.html#362625#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>