﻿<?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-Thinking in sky-最新评论</title><link>http://www.blogjava.net/hh-lux/CommentsRSS.aspx</link><description>－－老贺的BLOG</description><language>zh-cn</language><pubDate>Fri, 24 Aug 2007 02:49:59 GMT</pubDate><lastBuildDate>Fri, 24 Aug 2007 02:49:59 GMT</lastBuildDate><generator>cnblogs</generator><item><title>re: web开发中的分层原则和各层之间的数据传递问题 </title><link>http://www.blogjava.net/hh-lux/archive/2007/08/24/139044.html#139052</link><dc:creator>老贺</dc:creator><author>老贺</author><pubDate>Fri, 24 Aug 2007 02:44:00 GMT</pubDate><guid>http://www.blogjava.net/hh-lux/archive/2007/08/24/139044.html#139052</guid><description><![CDATA[我感觉PO和VO最麻烦的地方在于他们之间的值传递，以前在Service层里做PO&lt;--&gt;VO，一个属性一个属性的传递值，或者用工具，同名的属性自动传递值，但不同名还是要一个一个地写。不知道怎样做才方便点呢？<img src ="http://www.blogjava.net/hh-lux/aggbug/139052.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/hh-lux/" target="_blank">老贺</a> 2007-08-24 10:44 <a href="http://www.blogjava.net/hh-lux/archive/2007/08/24/139044.html#139052#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 简化Spring(3)--Controller层</title><link>http://www.blogjava.net/hh-lux/archive/2007/08/24/139040.html#139043</link><dc:creator>小贺</dc:creator><author>小贺</author><pubDate>Fri, 24 Aug 2007 02:28:00 GMT</pubDate><guid>http://www.blogjava.net/hh-lux/archive/2007/08/24/139040.html#139043</guid><description><![CDATA[Spring的MVC还没用过。个人觉得，MVC框架，会使用一种就行了。除非原理差别比较大的，比如Struts系列（WebWork，Spring MVC等）和Tapstry系列（Wicket等），否则没必要又精通Struts，又精通WebWork，项目遇到了现学就是。<img src ="http://www.blogjava.net/hh-lux/aggbug/139043.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/hh-lux/" target="_blank">小贺</a> 2007-08-24 10:28 <a href="http://www.blogjava.net/hh-lux/archive/2007/08/24/139040.html#139043#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 简化Spring(2)--Model层</title><link>http://www.blogjava.net/hh-lux/archive/2007/08/24/139023.html#139031</link><dc:creator>小贺</dc:creator><author>小贺</author><pubDate>Fri, 24 Aug 2007 02:13:00 GMT</pubDate><guid>http://www.blogjava.net/hh-lux/archive/2007/08/24/139023.html#139031</guid><description><![CDATA[以前做毕业设计时，仿照Appfuse的做法，model层总共有一个DAO接口、一个DAOImpl类、一个Service接口、一个ServiceImpl类、一个DataObject，写起来确实很麻烦，本来写的就是个小系统。<br><br>小系统嘛还是SpringSide的Model层简洁又清晰。其实Appfuse的DAO和Service的概念在SpringSide里还是有的，只是SpringSide把DAO和Service合成了一个Manager。<img src ="http://www.blogjava.net/hh-lux/aggbug/139031.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/hh-lux/" target="_blank">小贺</a> 2007-08-24 10:13 <a href="http://www.blogjava.net/hh-lux/archive/2007/08/24/139023.html#139031#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 简化Spring(2)--Model层</title><link>http://www.blogjava.net/hh-lux/archive/2007/08/24/139023.html#139028</link><dc:creator>小贺</dc:creator><author>小贺</author><pubDate>Fri, 24 Aug 2007 02:06:00 GMT</pubDate><guid>http://www.blogjava.net/hh-lux/archive/2007/08/24/139023.html#139028</guid><description><![CDATA[现在的SpringSide 2.0是把DAO和Service合在一起的，不知道以前的版本是怎么做的。 合在一起的类叫做Manager，继承自范型的DAO，如<br><br>public class UserManager extends HibernateEntityDao&lt;User&gt; {<br>        // ....CRUD以外的其它商业方法<br>}<br><br>以前DAO里的CRUD等基本方法，现在放在了Manager类里而且是不可见的（因为是继承过来的），这样Manager里直接写以前Service里的商业方法，看起来就很清晰了。<br><br>由于采用范型DAO，我们就不需要去写具体的DAO实现，编码量就因此减少了很多。<img src ="http://www.blogjava.net/hh-lux/aggbug/139028.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/hh-lux/" target="_blank">小贺</a> 2007-08-24 10:06 <a href="http://www.blogjava.net/hh-lux/archive/2007/08/24/139023.html#139028#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 毕业设计笔记（3）－－反射[未登录]</title><link>http://www.blogjava.net/hh-lux/archive/2007/08/23/117570.html#138754</link><dc:creator>小贺</dc:creator><author>小贺</author><pubDate>Thu, 23 Aug 2007 02:50:00 GMT</pubDate><guid>http://www.blogjava.net/hh-lux/archive/2007/08/23/117570.html#138754</guid><description><![CDATA[Class的getFields()方法返回此Class 对象所表示的类或接口的所有public属性。如果该 Class 表示一个类，则此方法返回该类及其所有超类的public属性。<br>如果该 Class 表示一个接口，则此方法返回该接口及其所有超接口的public属性。 <br>private和protected的属性是不能得到。<br><br>毕业设计的系统里面，我为了获得VO中属性的name和value，把原本的private改成了public，这样做肯定是有隐患的。SpringSide里也有这个需求，但是他新包装了一个方法，可以强行读取或设置对象变量值,忽略private,protected修饰符的限制。为什么我开始就没想到呢？<img src ="http://www.blogjava.net/hh-lux/aggbug/138754.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/hh-lux/" target="_blank">小贺</a> 2007-08-23 10:50 <a href="http://www.blogjava.net/hh-lux/archive/2007/08/23/117570.html#138754#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: dorado学习心得(持续更新)</title><link>http://www.blogjava.net/hh-lux/archive/2007/08/20/117766.html#138145</link><dc:creator>小贺</dc:creator><author>小贺</author><pubDate>Mon, 20 Aug 2007 06:19:00 GMT</pubDate><guid>http://www.blogjava.net/hh-lux/archive/2007/08/20/117766.html#138145</guid><description><![CDATA[突然发现Wicket跟DORADO很像， 都是基于组件的，只是Dorado封装得更方便易用。<img src ="http://www.blogjava.net/hh-lux/aggbug/138145.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/hh-lux/" target="_blank">小贺</a> 2007-08-20 14:19 <a href="http://www.blogjava.net/hh-lux/archive/2007/08/20/117766.html#138145#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: ant中copy操作学习心得</title><link>http://www.blogjava.net/hh-lux/archive/2007/07/13/86635.html#130112</link><dc:creator>hyl</dc:creator><author>hyl</author><pubDate>Fri, 13 Jul 2007 08:07:00 GMT</pubDate><guid>http://www.blogjava.net/hh-lux/archive/2007/07/13/86635.html#130112</guid><description><![CDATA[如何象Windows底下查找SRC目录，并将这些目录合并成一个新的SRC目录<br>我想这也是通过copy来实现的，但做了很多实验，都没办法完成查找相应的目录并合并他们如下：<br>1.	从指定的一个目录下 ，查找 src 目录<br>2.	将这些src 目录合并到一个 src 目录<br>3.	如果 src 目录下含有 “java” 这个目录，那么将java 目录下包含的文件及其目录移动到 src 目录下<br> <br>期待和您一起探讨<br><br>我的邮箱xinzi_815@163.com<img src ="http://www.blogjava.net/hh-lux/aggbug/130112.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/hh-lux/" target="_blank">hyl</a> 2007-07-13 16:07 <a href="http://www.blogjava.net/hh-lux/archive/2007/07/13/86635.html#130112#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: ant中copy操作学习心得</title><link>http://www.blogjava.net/hh-lux/archive/2007/07/11/86635.html#129639</link><dc:creator>hyl</dc:creator><author>hyl</author><pubDate>Wed, 11 Jul 2007 08:28:00 GMT</pubDate><guid>http://www.blogjava.net/hh-lux/archive/2007/07/11/86635.html#129639</guid><description><![CDATA[怎么将当前目录下嵌套在各级目录下的所有的source目录拷贝整合在一个新建的文件夹里呢<img src ="http://www.blogjava.net/hh-lux/aggbug/129639.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/hh-lux/" target="_blank">hyl</a> 2007-07-11 16:28 <a href="http://www.blogjava.net/hh-lux/archive/2007/07/11/86635.html#129639#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 毕业设计笔记（1）</title><link>http://www.blogjava.net/hh-lux/archive/2007/05/04/110556.html#115348</link><dc:creator>小贺</dc:creator><author>小贺</author><pubDate>Fri, 04 May 2007 14:12:00 GMT</pubDate><guid>http://www.blogjava.net/hh-lux/archive/2007/05/04/110556.html#115348</guid><description><![CDATA[感觉有限自动机的理念用在工作流里挺有意思的。目前还是JBPM最火吧，可惜这三大开源引擎没有相互统一的地方，确实是很有前途的项目。<img src ="http://www.blogjava.net/hh-lux/aggbug/115348.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/hh-lux/" target="_blank">小贺</a> 2007-05-04 22:12 <a href="http://www.blogjava.net/hh-lux/archive/2007/05/04/110556.html#115348#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: 毕业设计笔记（1）</title><link>http://www.blogjava.net/hh-lux/archive/2007/05/02/110556.html#114996</link><dc:creator>xiao</dc:creator><author>xiao</author><pubDate>Wed, 02 May 2007 00:39:00 GMT</pubDate><guid>http://www.blogjava.net/hh-lux/archive/2007/05/02/110556.html#114996</guid><description><![CDATA[我一直看的是shark，其实这些东西还是要看代码才有用<img src ="http://www.blogjava.net/hh-lux/aggbug/114996.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/hh-lux/" target="_blank">xiao</a> 2007-05-02 08:39 <a href="http://www.blogjava.net/hh-lux/archive/2007/05/02/110556.html#114996#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>