I am telling you...
I am telling you - the java.beans package is so under-estimated by most developers, that they ought to be ashamed...
I am telling you - the java.beans package is so under-estimated by most developers, that they ought to be ashamed...
I've noticed many of this blogs visitors have searched google for axis bean serializer. I've had a chat with my boss regarding open-sourcing our custom axis bean serializer (see previous post), but this is yet to be determined. Anyways - I was thinking about implementing a much more generic one, but I want to know whether people are acutally interessed in such a serializer or if you guys are more interessed in knowing how the current implementation works (users guide)? Any thoughts?
Well - as previously mentioned I've startet developing a web application using Tapestry as framework. Tapestry has a clear seperation of concerns which is why I chose to look at it in the first place.
<table border="0">
<c:forEach var="item" items="${myBean.items}">
<tr>
<td> <c:out value="${item.returnString}"/> <td>
<tr>
</c:forEach>
</table>
<table border="0">
<tr jwcid="foreach">
<td> <span jwcid="string">Some text 1</span> <td>
<tr>
<tr jwcid="$remove$">
<td> <span jwcid="string">Some text 2</span> <td>
<tr>
</table>
<component id="foreach" type="Foreach">
<binding name="source" expression="myBean.collection"/>
<binding name="value" expression="value"/>
</component>
<component id="string" type="Insert">
<binding name="value" expression="value.returnString"/>
</component>
Once again my somewhat vintage VW Golf II '90 has played me a trick. When I say vintage I actually mean old piece of crap thats just cost me enough money so I dont want to sell it... Remember theres a 180% TAX on cars in Denmark!! Yup - you read it right.. 180%..
Today I installed Tapestry for the very first time.
I tend to read a different set of blogs spanning from very close technology minded to more philosophical minded. Loosely Coupled Corner by Raghu Kodali is one of them and this blog has recently been about SOA. SOA is an abbreviation of "Service Oriented Architecture" but quite quickly renamed to "Same Old Architecture". If this infact was true, why has SOA come to life yet again then? And is SOA really "Same Old Architecture"?
I remember several years ago, my boss at the time, wanted to launch a marketplace for java components. None of us really felt like that was a great idea, because there were already many sites selling components and we were uncertain as to what a component really was.
Well - as a kind of a follow up on my post regarding using XML as model objects, I just thought - why not make all property access methods (get/set) package scoped??AND only allow acces to a certain object thru an access-object. I know many will think, well this breaks the "encapsulation" principle of the OO idea, but I beg to differ as there are many cases where this is exactly what you want, to instead end up putting logic into the get/set methods, which IMO is a bad idea.