<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Java Blog &#187; java</title>
	<atom:link href="http://javablog.be/category/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://javablog.be</link>
	<description>Java tutorials and tips</description>
	<pubDate>Sun, 11 Apr 2010 11:00:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>Devoxx 08: HTML 5 WebSockets and Server Sent Events</title>
		<link>http://javablog.be/java/devoxx-08-html-5-websockets-and-server-sent-events/</link>
		<comments>http://javablog.be/java/devoxx-08-html-5-websockets-and-server-sent-events/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 00:20:16 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[devoxx]]></category>

		<category><![CDATA[java]]></category>

		<category><![CDATA[html5]]></category>

		<category><![CDATA[server sent events]]></category>

		<category><![CDATA[websockets]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=84</guid>
		<description><![CDATA[WebSockets and Server Sent events can enable us to create a full-duplex web application.<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-08-html-5-websockets-and-server-sent-events/">Devoxx 08: HTML 5 WebSockets and Server Sent Events</a></p>
]]></description>
			<content:encoded><![CDATA[<p style="float: left;margin: 4px;"><script type="text/javascript"><!--
google_ad_client = "pub-3157565936561586";
/* Javablog, Rectangle, ATF */
google_ad_slot = "7293959518";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p><p>A few weeks back on <a href="http://www.devoxx.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.devoxx.com');">Devoxx 08</a>, Jonas Jacobi and John R. Fallows did a talk about 2 future web technologies  that&#8217;ll change the way we architect our webapplications.<br />
(in the same manner then AJAX did a few years back).</p>
<p>The technologies are called <strong>WebSockets</strong> and <strong>Server Sent events</strong> and are part of the HTML5 specification. (which is now in <a href="http://dev.w3.org/html5/spec/Overview.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://dev.w3.org/html5/spec/Overview.html');">Editor&#8217;s draft</a> and thus not finished)</p>
<p>WebSockets and Server Sent events can enable us to create a full-duplex web application. Eg. a sample application could be a poker game with thousands of viewers connected and that those viewers need to be notified in realtime. Another example could be a continuously updated stock ticker.</p>
<p>Prior to the introduction of WebSockets, bi-directional browser communication was an elusive beast, commonly known as <strong>Comet</strong> or <strong>ReverseAjax</strong> and typically achieved with an astonishing assortment of browser hacks. But, with the emerging standards outlined in the HTML 5 specification, developers can now take advantage of a full-duplex communications channel that operates over a single socket.</p>
<h3>Real time web</h3>
<p>With real time web, we mean that web clients can receive server updates (server initiated communication) and end users receive those updates concurrently.</p>
<p>Long polling with AJAX (XML Http Request) gives us near real time updates, but they are requested from the client and cause increased network traffic. Also these short AJAX requests generally have a small payload and relatively high amount of http headers. (wasted bandwith)</p>
<p>Comet technologies support HTTP Streaming, this setups a persistent http connection which only has to be setup/teardown only once. (especially nice for performance for https traffic)</p>
<h3>HTML 5 Overview</h3>
<p>HTML 5 not only contains WebSockets and Server Sent events.  It also contains standard features like:</p>
<ul>
<li>communication (sockets, cross-site)</li>
<li>graphics (2D)</li>
<li>drag n drop</li>
<li>storage (transient, (offline)    persistent)</li>
<li>compatibility</li>
</ul>
<p>Here we focus on two: Server-sent events and WebSockets</p>
<h3>Server-sent events</h3>
<p>Server-sent events standardizes how we stream data from the server to the client (in fact standardizing comet/reverse ajax).</p>
<p>It introduces a new DOM Element: <strong>eventsource</strong>. The eventsource element provides a simple interface for allowing servers to dispatch DOM events into documents that expect it.</p>
<p>Here is how to create it:</p>
<p>var es = document.createElement(&#8221;eventsource&#8221;);<br />
es.addEventSource(&#8221;http://www.javablog.be&#8221;);</p>
<p>(where the event source is an URL).</p>
<h3>WebSockets</h3>
<p>WebSockets provide a full duplex TCP connection to communicate between the browser and the server. It traverses firewalls and routers and allows authorized cross domain communication.</p>
<p>An example is provided below:</p>
<p>var myWebSocket = new WebSocket(&#8221;ws://www.websocket.org&#8221;);</p>
<p>The WebSocket(url) constructor takes one argument, url, which specifies the URL to which to connect. When a WebSocket object is created, the User Agent must parse this argument and verify that the URL parses without failure and has a &lt;scheme&gt; component whose value is either &#8220;ws&#8221; or &#8220;wss&#8221;. Only then the user agent must asynchronously establish a Web Socket connection to url.</p>
<p>myWebSocket.postMessage(&#8221;Hello&#8221;);</p>
<p>=&gt; text based data transmission using the connection.</p>
<p>myWebSocket.onopen = function(evt) { }</p>
<p>=&gt; The open  event is fired when the Web Socket connection is established.</p>
<p>myWebSocket.onmessage = function(evt) { }</p>
<p>=&gt; The message event is fired when when data is received for a connection.</p>
<p>myWebSocket.onclose = function(evt) { }</p>
<p>=&gt; The close event is fired when the connection is closed</p>
<p>myWebSocket.disconnect();</p>
<p>=&gt; close the conncetion</p>
<h3>Browser support</h3>
<p>Opera already has Server sent events, for Mozilla/Firefox there is patch available (bug <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=338583" onclick="javascript:pageTracker._trackPageview('/outbound/article/https://bugzilla.mozilla.org/show_bug.cgi?id=338583');">338583</a>)<br />
WebSockets is not yet available natively in browsers.</p>
<p>But fortunately for current browsers <a href="http://www.kaazing.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.kaazing.com');">Kaazing.com</a> provides an emulation Javascript library. (IE5.5+, Firefox 1.5, Chrome 0.2+, Safari 3.1+, Opera9+)<br />
The Javascript only emulates the parts which are not yet implemented in a certain browser.<br />
It can be any of the following layers: ByteSocket, Websockets, Server sent events, Cross site XML HTTP Request, XML Http Request IFrame postMessage</p>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-08-html-5-websockets-and-server-sent-events/" >Devoxx 08: HTML 5 WebSockets and Server Sent Events</a></p>
<p></p>]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/devoxx-08-html-5-websockets-and-server-sent-events/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Devoxx 08: Major Servlet 3.0 features</title>
		<link>http://javablog.be/java/devoxx-08-major-servlet-30-features/</link>
		<comments>http://javablog.be/java/devoxx-08-major-servlet-30-features/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 23:11:17 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[devoxx]]></category>

		<category><![CDATA[java]]></category>

		<category><![CDATA[servlet]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=83</guid>
		<description><![CDATA[The major new features planned for Servlet 3.0.<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-08-major-servlet-30-features/">Devoxx 08: Major Servlet 3.0 features</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Martin Marinschek divided his talk in two main topics: Servlet 3.0 and JSF 2.0.</p>
<p>The first part of the talk showed us the new features planned for <strong>Servlet 3.0</strong>.</p>
<p>What follows is based on the <a href="https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_JCP-Site/en_US/-/USD/ViewFilteredProducts-SingleVariationTypeFilter" onclick="javascript:pageTracker._trackPageview('/outbound/article/https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_JCP-Site/en_US/-/USD/ViewFilteredProducts-SingleVariationTypeFilter');">Public Review draft</a>.<br />
So be sure to check if the following still applies to the final Servlet 3.0 version.</p>
<h2>Modularization of the web.xml settings</h2>
<p>Right now the web.xml is one big configuration file. In Servlet 3.0 it&#8217;s possible to modularize it into multiple files.<br />
These files are called &#8220;web-fragment.xml&#8221; files and they are merged together on application initialization.<br />
Because these fragments can conflict with each other, the specification has specified rules for conflict resolution. (we could take a deeper look at this in a future blog post).</p>
<p>Martin also said that fragment ordering is not defined; this eg. could mean that a filter you want to be executed first may have to be repeated in multiple fragments.</p>
<h2>Annotation support in your servlets</h2>
<p>A few annotations were added that you can use in your servlets:</p>
<p><strong>@WebServlet</strong></p>
<p>This annotation is used to define a Servlet component in a web application. The urlPatterns or the value attribute on the annotation MUST be present. (value is for 1 URL mapping, urlPatterns for multiple URL mappings)<br />
Classes annotated with @WebServlet class MUST extend javax.servlet.http.HttpServlet class except when applied on a JAX-RS / JAX-WS endpoint.</p>
<p>Example:</p>
<p>@WebServlet(name=&#8221;MyServlet&#8221;, urlPatterns={&#8221;/foo&#8221;, &#8220;/bar&#8221;})<br />
public class SampleUsingAnnotationAttributes extends HttpServlet{<br />
public void doGet(HttpServletRequest req, HttpServletResponse res) {<br />
}<br />
}</p>
<p>Other optional attributes for the @WebServlet annotation are: supportAsync and asyncTimeout</p>
<p><strong>@ServletFilter</strong></p>
<p>This annotation is used to define a Filter in a web application. Classes annotated with @ServletFilter MUST implement javax.servlet.Filter</p>
<p><strong>@InitParam</strong></p>
<p>This annotation is used to specify Init Parameters for a servlet or a filter</p>
<p><strong>@WebServletContextListener</strong></p>
<p>The WebServletContextListener annotation is used to annotate a context listener to get events for various operations on the particular web application context.<br />
Classes annotated with @WebServletContextListener MUST implement javax.servlet.ServletContextListener</p>
<h2>Asynchronous requests</h2>
<p>Sometimes a filter and/or servlet is unable to complete the processing of a request without waiting for a resource or event before generating a response. For example, a servlet may need to wait for an available JDBC connection, for a response from a remote web service, for a JMS message, or for an application event, before<br />
proceeding to generate a response. Waiting within the servlet is an inefficient operation as it is a blocking operation that consumes a thread and other limited resources. Frequently a slow resource such as a database may have many threads blocked waiting for access and can cause thread starvation and poor quality of service  for an entire web container.</p>
<p>Servlet 3.0 introduces the ability for asynchronous processing of requests so that the thread may return to the container and perform other tasks.</p>
<p>When asyncSupported is set to true in the filter/servlets annotation the application can start asynchronous<br />
processing in a separate thread by calling the HttpServletRequest.startAsync method passing it a<br />
reference to the request and response objects.</p>
<p>After I&#8217;ve played with the asynchronous requests I&#8217;ll post some code samples to Java Blog to explain how exactly it works.</p>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-08-major-servlet-30-features/" >Devoxx 08: Major Servlet 3.0 features</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/devoxx-08-major-servlet-30-features/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Devoxx 08: what&#8217;s new in Java 7?</title>
		<link>http://javablog.be/java/devoxx-java/devoxx-08-whats-new-in-java-7/</link>
		<comments>http://javablog.be/java/devoxx-java/devoxx-08-whats-new-in-java-7/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 14:46:05 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[devoxx]]></category>

		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=73</guid>
		<description><![CDATA[What's new in Java 7<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/devoxx-08-whats-new-in-java-7/">Devoxx 08: what&#8217;s new in Java 7?</a></p>
]]></description>
			<content:encoded><![CDATA[<p>In the thursday keynote at Devoxx, Mark Reinhold (from Sun) presented the new features slated for the Java 7 release. (the expected release date of Java 7 is early 2010)</p>
<p>One of the most important new features will be the modularization of Java SE7. Modularization is needed because both Java and the JDK have become quite big. This for example gives issues when trying to run it on smaller (mobile) devices. Cutting the JDK into modules will avoid loading unnecessary classes, which on their turn result in shorter start-up times for applications. To print a simple string &#8220;Hello world&#8221;, Java needs over 300 classes in the current version!.</p>
<p>A list of the other new features can be found <a href="http://hamletdarcy.blogspot.com/2008/12/java-7-update-from-mark-reinhold-at.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://hamletdarcy.blogspot.com/2008/12/java-7-update-from-mark-reinhold-at.html');">here!</a></p>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/devoxx-08-whats-new-in-java-7/" >Devoxx 08: what&#8217;s new in Java 7?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/devoxx-java/devoxx-08-whats-new-in-java-7/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Devoxx 08: Scrum in practice</title>
		<link>http://javablog.be/java/devoxx-java/devoxx-08-scrum-in-practice/</link>
		<comments>http://javablog.be/java/devoxx-java/devoxx-08-scrum-in-practice/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 20:50:17 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[devoxx]]></category>

		<category><![CDATA[agile]]></category>

		<category><![CDATA[scrum]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=68</guid>
		<description><![CDATA[An introduction to the SCRUM Agile Methodology<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/devoxx-08-scrum-in-practice/">Devoxx 08: Scrum in practice</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Yesterday we gave <a href="http://javablog.be/java/devoxx-java/devoxx-08-xtreme-programming" >an overview of Xtreme Prgramming</a>. Today we&#8217;ll dive into the SCRUM Agile methodology.</p>
<h2>Scrum roles</h2>
<p>Scrum defines three different roles: the Product Owner, the Team and the Scrum master.</p>
<h3>Product owner</h3>
<p>The product owner, who&#8217;s responsible for the project, has the following tasks:</p>
<ul>
<li>he defines the product vision and features</li>
<li>he plans releases (release dates &amp; contents of a release)</li>
<li>he prioritizes the needed features in a release according to business/market value</li>
<li>he&#8217;s able to change features and priority of the tasks before the start of every iteration (not during the iteration)</li>
<li>at the end of a release he accepts or rejects the work results</li>
<li>he&#8217;s responsible for the return on investment of the product.</li>
</ul>
<h3>Team</h3>
<p>The team is responsible for the success of every iteration done in a release. Ideally the team consists out of 5 to 9 members. Different profiles are needed: developers, testers, QA guys, infrastructure guys, &#8230;</p>
<p>What does the team needs todo?</p>
<ul>
<li>they need to select the iteration goal and specify work results</li>
<li>they have the right to do everything within the boundaries of the project guidelines to reach the iteration goal</li>
<li>they organize themselves and their work</li>
<li>they demo the work results to the product owner and stakeholders</li>
</ul>
<h3>Scrum master</h3>
<p>The scrum master makes sure that the SCRUM process is followed and understood.<br />
Besides that he also:</p>
<ul>
<li>helps the dev team to improve its productivity by facilitating creativety and empowerment</li>
<li>helps the team improve engineering practices &amp; tools so each increment of functionality is potentially shippable</li>
<li>helps the customer directly drive the functionality developped</li>
<li>enables close cooperation between all roles</li>
</ul>
<h2>Scrum process</h2>
<p>The full scope of the project is put into a <strong>Product Backlog</strong>; the list of features to be implemented. This product backlog is input for the <strong>Sprint planning meeting</strong>.</p>
<p>The <strong>sprint backlog</strong> defines the scope of one iteration and is derived from the product backlog. It&#8217;s defined during the Sprint planning meeting. In this meeting the product owner presents to the team a prioritized product backlog. The team gives estimates of the stories selected for this sprint.</p>
<p>Stories are compared to each other and relative points are given based on the complexity of the stories. (higher points =&gt; more complexity). The Product owner and Team negotiate the Sprint goal and the team commits to develop a set of features. Based on these stories the team plans out smaller subtasks.</p>
<p>During the <strong>sprint</strong> the scope is fixed. It&#8217;s the task of the scrum master to protect the team from scope changes. (only the team itself is allowed to change the scope of the sprint!)</p>
<p>Generally a sprint takes 2 to 4 weeks. During the sprint, there is a <strong>daily scrum meeting</strong>; a short standup meeting where every team member will talk about what he&#8217;s busy until next meeting, what he did yesterday and any problems he encountered.</p>
<p>The sprint produces an increment of potentially shippable functionality containing analysis, design, coding, testing and docs.</p>
<p>During the Sprint a <strong>burndown chart</strong> is created: it displays the amount of work done &amp; work remaining across time. (start with max. number of story points at day 1; then substract story points when a story is fully finished during the sprint time). This allows you to see the progress rate and estimated completion date. One can also see if the team is faster/slower then the &#8220;steady pace&#8221;. (purple line)</p>
<p><div class="wp-caption aligncenter" style="width: 437px"><img title="Burn down chart" src="http://assets.devx.com/articlefigs/17361.jpg" alt="Burn down chart" width="427" height="255" /><p class="wp-caption-text">Burn down chart</p></div></p>
<p>When the Sprint is finished; there is a <strong>sprint review meeting</strong> (a demo to the stakeholders) and a <strong>sprint retrospective meeting</strong> (a lessons learned meeting)</p>
<p>During the Sprint review meeting the team gives a demo to the product owner with the output of the iteration. Ideally this should be done in a pre-prod or production environment.</p>
<p>Present only what is &#8220;really&#8221; done (clean, refactored, unit-tsted, built, acceptance-tested); otherwise you&#8217;ll give a false impression that more is done then what&#8217;s reality.</p>
<p>A Sprint retrospective is a kind of Lessons learned meeting: continous improvement by collecting what went well &amp; what went wrong during the Sprint.</p>
<p>You can also revise the development process to make it more effective &amp; enjoable for the next sprint. (eg. processes, practices, communication, environment, artefacts, tools,&#8230;)</p>
<p>A <strong>release </strong>consists of one or more sprints. The contents of a release are based on the continuously updated product backlog. It&#8217;s the product owners responsibality to fill in the release, taking into account the actual team velocity. (eg. this team can do 25 points per sprint).</p>
<p>Release planning can be done <strong>Time driven</strong> (if your release should be ready on a fixed deadline) or <strong>feature driven</strong>. (select the highest priority items first).</p>
<h2>Scrum from theory to practice</h2>
<p>You may have difficulty going from theory to practice due to any of the following reasons:</p>
<ul>
<li>transitioning to an agile culture</li>
<li>finding a product owner</li>
<li>lack of communication between people</li>
<li> cross organizational boundaries</li>
</ul>
<p>Scrum doesn&#8217;t pretend to solve those issues in your organization, but will make them visible a lot earlier in the project.</p>
<p>An ideal product owner should be able to:</p>
<ul>
<li>coordinate the various user requirements</li>
<li>articulate the vision of the project</li>
<li>make scope decisions</li>
<li>be a project sponsor: negotiates &amp; manages the budget</li>
<li>define priorities and releases</li>
<li>allocate time for collaboration with the team</li>
</ul>
<p>For cross department communication, try to get domain/technical experts assigned on the project full-time (can also be part-time if full time is not possible).</p>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/devoxx-08-scrum-in-practice/" >Devoxx 08: Scrum in practice</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/devoxx-java/devoxx-08-scrum-in-practice/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Devoxx 08: Xtreme Programming</title>
		<link>http://javablog.be/java/devoxx-java/devoxx-08-xtreme-programming/</link>
		<comments>http://javablog.be/java/devoxx-java/devoxx-08-xtreme-programming/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 23:02:46 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[devoxx]]></category>

		<category><![CDATA[scrum]]></category>

		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=63</guid>
		<description><![CDATA[This university session was covering two main topics: an introduction to Xtreme Programming and an overview of the very popular SCRUM agile methodology.<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/devoxx-08-xtreme-programming/">Devoxx 08: Xtreme Programming</a></p>
]]></description>
			<content:encoded><![CDATA[<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/devoxx-08-xtreme-programming/" >Devoxx 08: Xtreme Programming</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/devoxx-java/devoxx-08-xtreme-programming/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Top picks for Devoxx 2008 University day 2</title>
		<link>http://javablog.be/java/devoxx-java/top-picks-for-devoxx-2008-university-day-2/</link>
		<comments>http://javablog.be/java/devoxx-java/top-picks-for-devoxx-2008-university-day-2/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 19:19:51 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[devoxx]]></category>

		<category><![CDATA[android]]></category>

		<category><![CDATA[comet]]></category>

		<category><![CDATA[flex]]></category>

		<category><![CDATA[html5]]></category>

		<category><![CDATA[websockets]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=61</guid>
		<description><![CDATA[My top picks for the 2nd Devoxx day<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/top-picks-for-devoxx-2008-university-day-2/">Top picks for Devoxx 2008 University day 2</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Here are my Top picks for Devoxx 2008 University day 2:</p>
<h2><a href="http://www.devoxx.com/display/JV08/Comet%2C+Never+More" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.devoxx.com/display/JV08/Comet%2C+Never+More');">Comet: Never more!</a></h2>
<p>The title of this talk is a little bit mysterious if you don&#8217;t know what Comet is about, but the content is looking very interesting.</p>
<p>The first part of the talk will be about HTML5 WebSockets and Server Side Events. WebSockets will enable full-duplex HTTP communication, and bring an end to the &#8220;click and wait&#8221; paradigm traditionally associated with the Web.</p>
<p>Attendees will also learn how WebSockets can be used to deliver information from a set of TCP-based backend services, such as Apache ActiveMQ and Jabber to a variety of clients (e.g. Java, Silverlight, and Flash) other than JavaScript.</p>
<p>The second half of this university session will be about deploying and scaling &#8220;real-time&#8221; Web Applications. Eg. the server and network architecture, performance requirements and scalability of a bi-directional Web application will be discussed.</p>
<p>Check out <a href="http://www.jroller.com/jonasjacobi/entry/kaazing_world_tour_learn_about" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.jroller.com/jonasjacobi/entry/kaazing_world_tour_learn_about');">Jonas Jacobi&#8217;s blog</a> for more info!</p>
<h2><a href="http://www.devoxx.com/display/JV08/Filthy+Rich+Clients%2C+beyond+Java" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.devoxx.com/display/JV08/Filthy+Rich+Clients%2C+beyond+Java');">Filthy Rich Clients: beyond Java</a></h2>
<p>Interested in the new Google Android phone? Then you certainly should not miss this univerity session by Romain Guy.</p>
<p><a href="http://www.curious-creature.org/2008/12/05/official-android-development-phones/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.curious-creature.org/2008/12/05/official-android-development-phones/');">Romain Guy</a>, who&#8217;s now working on the UI design of the Android phones as a Google engineer, always manages to impress the crowd with cool demos and knows what it takes to design a intuitive user-interface.<br />
(which is more important than most programmers think!)</p>
<p><a href="http://graphics-geek.blogspot.com/2008/11/minmax.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://graphics-geek.blogspot.com/2008/11/minmax.html');">Chet Haase</a>, who works on animation and UI components for the Flex SDK team at Adobe Systems, will likewise describe how to achieve beautiful Filthy Rich Client applications for Flex.</p>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-java/top-picks-for-devoxx-2008-university-day-2/" >Top picks for Devoxx 2008 University day 2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/devoxx-java/top-picks-for-devoxx-2008-university-day-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Devoxx 2008: my session picks for University day 1</title>
		<link>http://javablog.be/java/devoxx-2008-my-session-picks-for-university-day-1/</link>
		<comments>http://javablog.be/java/devoxx-2008-my-session-picks-for-university-day-1/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 23:16:33 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[java]]></category>

		<category><![CDATA[javapolis]]></category>

		<category><![CDATA[devoxx]]></category>

		<category><![CDATA[jsf]]></category>

		<category><![CDATA[scrum]]></category>

		<category><![CDATA[servlet]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=58</guid>
		<description><![CDATA[I'll be again present on Europe's largest Java conference Javapolis Devoxx.<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-2008-my-session-picks-for-university-day-1/">Devoxx 2008: my session picks for University day 1</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be again present on Europe&#8217;s largest Java conference Javapolis Devoxx.</p>
<p>Here is a list of what sessions I&#8217;ll be following.</p>
<p>If you want to meet me let me know via my <a href="https://twitter.com/wimbervoets" onclick="javascript:pageTracker._trackPageview('/outbound/article/https://twitter.com/wimbervoets');">Twitter</a>.</p>
<h2><a href="http://www.devoxx.com/display/JV08/Scrum+in+Practice " onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.devoxx.com/display/JV08/Scrum+in+Practice ');">Scrum in Practice</a></h2>
<p>The agile Scrum process will be explained: its roles, its artefacts and the challenges in implementing it in an organization.</p>
<h2><a href="http://www.devoxx.com/pages/viewpage.action?pageId=1377937" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.devoxx.com/pages/viewpage.action?pageId=1377937');">Servlet 3.0 &amp; JSF 2.0</a></h2>
<p>I&#8217;m especially interested in the new features in JSF2.0 and the modularization support for web applications in Servlets 3.0</p>
<h2><a href="http://www.devoxx.com/display/JV08/JFreeChart" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.devoxx.com/display/JV08/JFreeChart');">JFreeChart</a></h2>
<p>Having used JFreeChart v0.9.x a few years ago, I&#8217;m looking forward to seeing the enhancements/new features in the current version.</p>
<h2><a href="http://www.devoxx.com/display/JV08/Agile+Testing+of+Java+Rich+Clients%2C+with+Fit%2C+FEST+and+TestNG" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.devoxx.com/display/JV08/Agile+Testing+of+Java+Rich+Clients%2C+with+Fit%2C+FEST+and+TestNG');">Agile Testing of Java Rich Clients</a></h2>
<p>Traditionally a difficult area to automate tests for, I&#8217;m wondering how Fit, FEST and TestNG will fare.</p>
<h2><a href="http://www.devoxx.com/display/JV08/Bringing+Designers+and+Developers+Together+with+JavaFX+and+Project+Nile" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.devoxx.com/display/JV08/Bringing+Designers+and+Developers+Together+with+JavaFX+and+Project+Nile');">Bringing Designers and Developers Together with JavaFX and Project Nile</a></h2>
<p>As a Flex developer, I&#8217;m wondering how JavaFX and Flex compare to each other.</p>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/devoxx-2008-my-session-picks-for-university-day-1/" >Devoxx 2008: my session picks for University day 1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/devoxx-2008-my-session-picks-for-university-day-1/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Weblets 1.1 now officially released</title>
		<link>http://javablog.be/java/weblets-11-now-officially-released/</link>
		<comments>http://javablog.be/java/weblets-11-now-officially-released/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 20:49:21 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[java]]></category>

		<category><![CDATA[jsf]]></category>

		<category><![CDATA[weblets]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=57</guid>
		<description><![CDATA[Weblets 1.1 now officially released<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/weblets-11-now-officially-released/">Weblets 1.1 now officially released</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Weblets 1.1 has been released at <a href="http://weblets.dev.java.net" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://weblets.dev.java.net');" target="_blank">weblets.dev.java.net</a></p>
<p>Weblets is a Java servlet based framework that provides an easy way of loading resources (Javascript, CSS, images, &#8230;) directly out of JAR files. For an overview of what Weblets can do for you, check <a href="http://javablog.be/java/weblets-10-has-been-released/" >our Weblets overview</a>.</p>
<p>Below we&#8217;ll highlight some of the new features in Weblets v1.1:</p>
<ul>
<li><tt>Weblets</tt> 1.1 provides a stable api to build your own Weblets upon</li>
<li>Asynchronous In-server reporting of url usage is possible. (eg. for traffic analysis). In-server means that the logging is done in the same JVM server process. Asynchronous because reports that are triggered and executed can run for a longer period of time.</li>
<li>General reporting API for      in server reporting instances</li>
<li>Configurable cache timeouts for better browser cache control</li>
</ul>
<p><tt>Weblets</tt> 1.0 only had the possibility to host resources within your classpath. It was only possible to host <tt>Weblets</tt> related resources within a jar or within your WEB-INF/classes directory!</p>
<p><tt>Weblets</tt> 1.1 now enhances this with a very common usecase. <tt>expanded application hosted resources</tt> . This means you can put any resource hosted within your local web application under <tt>Weblet</tt> control. For instance if your application is hosted under <tt>/myapplication</tt> and your resource under <tt>/myapplication/images/myimage.png</tt> it until now was not possible to put this resource under Weblets control.</p>
<ul>
<li>Server Mime Type overrides: some servers don&#8217;t set default mime types. (eg Weblogic 8.1). If you&#8217;re not able to edit them in the web.xml, the Weblets configuration provides another possibility.</li>
<li>Resource Whitelists: a mechanism to allow the serving of resources only for certain filetypes given in a resource whitelist (eg. only allow serving of png files)</li>
<li>Weblets 1.1 corrects Maven2.0 transitive dependencies (Maven should now pickup all needed dependencies of Weblets)</li>
</ul>
<p><!--[if gte mso 9]><xml> <w :WordDocument> </w><w :View>Normal</w> <w :Zoom>0</w> <w :TrackMoves /> <w :TrackFormatting /> <w :HyphenationZone>21</w> <w :PunctuationKerning /> <w :ValidateAgainstSchemas /> <w :SaveIfXMLInvalid>false</w> <w :IgnoreMixedContent>false</w> <w :AlwaysShowPlaceholderText>false</w> <w :DoNotPromoteQF /> <w :LidThemeOther>NL-BE</w> <w :LidThemeAsian>X-NONE</w> <w :LidThemeComplexScript>X-NONE</w> <w :Compatibility> <w :BreakWrappedTables /> <w :SnapToGridInCell /> <w :WrapTextWithPunct /> <w :UseAsianBreakRules /> <w :DontGrowAutofit /> <w :SplitPgBreakAndParaMark /> <w :DontVertAlignCellWithSp /> <w :DontBreakConstrainedForcedTables /> <w :DontVertAlignInTxbx /> <w :Word11KerningPairs /> <w :CachedColBalance /> </w> <w :BrowserLevel>MicrosoftInternetExplorer4</w> <m :mathPr> <m :mathFont m:val="Cambria Math" /> <m :brkBin m:val="before" /> <m :brkBinSub m:val="&#45;-" /> <m :smallFrac m:val="off" /> <m :dispDef /> <m :lMargin m:val="0" /> <m :rMargin m:val="0" /> <m :defJc m:val="centerGroup" /> <m :wrapIndent m:val="1440" /> <m :intLim m:val="subSup" /> <m :naryLim m:val="undOvr" /> </m> </xml>< ![endif]--><!--[if gte mso 9]><xml> <w :LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w :LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w :LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w :LsdException Locked="false" Priority="39" Name="toc 1" /> <w :LsdException Locked="false" Priority="39" Name="toc 2" /> <w :LsdException Locked="false" Priority="39" Name="toc 3" /> <w :LsdException Locked="false" Priority="39" Name="toc 4" /> <w :LsdException Locked="false" Priority="39" Name="toc 5" /> <w :LsdException Locked="false" Priority="39" Name="toc 6" /> <w :LsdException Locked="false" Priority="39" Name="toc 7" /> <w :LsdException Locked="false" Priority="39" Name="toc 8" /> <w :LsdException Locked="false" Priority="39" Name="toc 9" /> <w :LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w :LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w :LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w :LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w :LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w :LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w :LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w :LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w :LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w :LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w :LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w :LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w :LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w :LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w :LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w :LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w :LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w :LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w :LsdException Locked="false" Priority="37" Name="Bibliography" /> <w :LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w> </xml>< ![endif]--><!--[if gte mso 10]></p>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:Standaardtabel;
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-qformat:yes;
	mso-style-parent:"";
	mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
	mso-para-margin:0cm;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;}
</style>
<p>< ![endif]--><span style="font-size: 12pt; font-family: ">See <a href="http://weblets.dev.java.net/doc_11/longdoc/whatsnew.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://weblets.dev.java.net/doc_11/longdoc/whatsnew.html');" target="_blank">http://weblets.dev.java.net/doc_11/longdoc/whatsnew.html</a> for a more detailed description of the new features!</span></p>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/weblets-11-now-officially-released/" >Weblets 1.1 now officially released</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/weblets-11-now-officially-released/feed/</wfw:commentRss>
		</item>
		<item>
		<title>JSF 1.1 performance fixes</title>
		<link>http://javablog.be/java/jsf-11-performance-fixes/</link>
		<comments>http://javablog.be/java/jsf-11-performance-fixes/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 20:39:56 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[java]]></category>

		<category><![CDATA[1.1_02]]></category>

		<category><![CDATA[1.1_03]]></category>

		<category><![CDATA[jsf]]></category>

		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=48</guid>
		<description><![CDATA[Unreleased performance fixes for JSF 1.1<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/jsf-11-performance-fixes/">JSF 1.1 performance fixes</a></p>
]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]><xml> <w :LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w :LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w :LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w :LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w :LsdException Locked="false" Priority="39" Name="toc 1" /> <w :LsdException Locked="false" Priority="39" Name="toc 2" /> <w :LsdException Locked="false" Priority="39" Name="toc 3" /> <w :LsdException Locked="false" Priority="39" Name="toc 4" /> <w :LsdException Locked="false" Priority="39" Name="toc 5" /> <w :LsdException Locked="false" Priority="39" Name="toc 6" /> <w :LsdException Locked="false" Priority="39" Name="toc 7" /> <w :LsdException Locked="false" Priority="39" Name="toc 8" /> <w :LsdException Locked="false" Priority="39" Name="toc 9" /> <w :LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w :LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w :LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w :LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w :LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w :LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w :LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w :LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w :LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w :LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w :LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w :LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w :LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w :LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w :LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w :LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w :LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w :LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w :LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w :LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w :LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w :LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w :LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w :LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w :LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w :LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w :LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w :LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w :LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w :LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w :LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w :LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w :LsdException Locked="false" Priority="37" Name="Bibliography" /> <w :LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w> </xml>< ![endif]--> JSF 1.1_02 is the latest officially released reference implementation of JSF1.1 by Sun. It&#8217;s still widely used by companies who have not yet migrated to Java5 (as it is not always easy to migrate all applications to a new target platform).</p>
<p class="MsoPlainText">While looking through the <a href="http://fisheye5.cenqua.com/browse/javaserverfaces-sources" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://fisheye5.cenqua.com/browse/javaserverfaces-sources');">FishEye source code view</a>, I came accross some interesting unreleased performance fixes:<a href="https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=125" onclick="javascript:pageTracker._trackPageview('/outbound/article/https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=125');"></a></p>
<p class="MsoPlainText"><a href="https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=125" onclick="javascript:pageTracker._trackPageview('/outbound/article/https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=125');">https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=125</a></p>
<p class="MsoPlainText"><span> </span></p>
<p class="MsoPlainText"><span> </span><em>I have been investigating the size of views as they are stuffed in the session for scalability reasons, and have found a couple of issues with the RI code:</em></p>
<p class="MsoPlainText"><em><span> </span></em></p>
<p class="MsoPlainText"><em><span> </span></em></p>
<p class="MsoPlainText"><em><span> </span>1. The biggest problem I found was in StateManagerImpl.The function removeTransientChildrenAndFacets causes the lazy init of the child list, facet map, and client id of every component in the tree! Very, very sloppy.</em></p>
<p class="MsoPlainText"><em><span> </span><strong>Fixing this literally halved the size of the view in memory.</strong></em></p>
<p class="MsoPlainText"><span> </span></p>
<p class="MsoPlainText"><a href="https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=223" onclick="javascript:pageTracker._trackPageview('/outbound/article/https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=223');">https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=223</a></p>
<p class="MsoPlainText"><span> </span></p>
<p class="MsoPlainText">
<p class="MsoPlainText"><em>StateManager for stateSaving Server has a synchronization lock on (this), blocking all threads.<span> </span>I thought this was fixed a while back. </em></p>
<p class="MsoPlainText"><a href="https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=222" onclick="javascript:pageTracker._trackPageview('/outbound/article/https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=222');">https://javaserverfaces.dev.java.net/issues/show_bug.cgi?id=222</a></p>
<p class="MsoPlainText"><span> </span></p>
<p class="MsoPlainText"><em>Currently the checkIdUniqueness forces creation of child and facet arrays onevery component, the suggestion is to switch over togetFacetsAndChildren() which is now optimized within UIComponentBase to avoid unecessary eden creation in memory.</em></p>
<p class="MsoPlainText">Has anybody already used these JSF 1.1_03 rolling fixes and noticed memory reduction? If so please let us know in the comments!</p>
<p class="MsoPlainText">
<p class="MsoPlainText"><span> </span></p>
<p class="MsoPlainText"><span> </span></p>
<p class="MsoPlainText"><span> </span></p>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/jsf-11-performance-fixes/" >JSF 1.1 performance fixes</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/jsf-11-performance-fixes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fix your Richfaces AJAX (performance) problems</title>
		<link>http://javablog.be/java/fix-your-richfaces-ajax-performance-problems/</link>
		<comments>http://javablog.be/java/fix-your-richfaces-ajax-performance-problems/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 09:28:01 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[java]]></category>

		<category><![CDATA[jsf]]></category>

		<category><![CDATA[richfaces]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=47</guid>
		<description><![CDATA[Richfaces supports AJAX functionality in a lot of it components. However a servlet filter is needed for correct functioning of partial page refreshes.<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/fix-your-richfaces-ajax-performance-problems/">Fix your Richfaces AJAX (performance) problems</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Richfaces supports AJAX functionality in a lot of it components. However a servlet filter is needed for correct functioning of partial page refreshes.</p>
<p>In this post we&#8217;ll show you how to add this filter and at the same time optimize Richfaces performance.</p>
<p>The following Richfaces filter is defined in the web.xml:</p>
<div class="codeContent panelContent">
<pre class="code-xml"><span class="code-tag">&lt;filter&gt;</span>
        <span class="code-tag">&lt;filter-name&gt;</span>richfaces<span class="code-tag">&lt;/filter-name&gt;</span>
        <span class="code-tag">&lt;display-name&gt;</span>RichFaces Filter<span class="code-tag">&lt;/display-name&gt;</span>
        <span class="code-tag">&lt;filter-class&gt;</span>org.ajax4jsf.Filter<span class="code-tag">&lt;/filter-class&gt;</span>
        <span class="code-tag">&lt;init-param&gt;</span>
			<span class="code-tag">&lt;param-name&gt;</span>forceparser<span class="code-tag">&lt;/param-name&gt;</span>
			<span class="code-tag">&lt;param-value&gt;</span>false<span class="code-tag">&lt;/param-value&gt;</span>
		<span class="code-tag">&lt;/init-param&gt;</span>
    <span class="code-tag">&lt;/filter&gt;

</span></pre>
<p>What this filter does, is to &#8216;tidy&#8217; all HTML HTTP Responses so that they are valid XHTML (thus XML compliant). This is needed as dynamic DOM updates in the browser need correct XML.</p>
<p>If you don&#8217;t define this filter, it is possible that you&#8217;ll not see your AJAX update being rendered on the screen, although you&#8217;ll see the html response coming back in eg. <a rel="nofollow" href="http://getfirebug.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://getfirebug.com/');">Firebug</a></p>
<p>Of course, parsing HTML incurs a performance overhead.<br />
This can be minimized by setting the <strong>forceparser</strong> setting to false. In that case only AJAX responses will be &#8216;tidied&#8217;. In the other case all JSF responses are &#8216;tidied&#8217;. That is because the filter is mapped on the Faces servlet:</p>
<div class="code panel" style="border-width: 1px;">
<div class="codeContent panelContent">
<pre class="code-xml"><span class="code-tag">&lt;filter-mapping&gt;</span>
        <span class="code-tag">&lt;filter-name&gt;</span>richfaces<span class="code-tag">&lt;/filter-name&gt;</span>
        <span class="code-tag">&lt;servlet-name&gt;</span>Faces Servlet<span class="code-tag">&lt;/servlet-name&gt;</span>
    <span class="code-tag">&lt;/filter-mapping&gt;

</span></pre>
</div>
</div>
</div>
<div class="codeContent panelContent">Richfaces has a few parsers onboard. The default one is based on Tidy, but it is quite slow. The Neko parser is faster and can be used by setting the following context-param&#8217;s:</div>
<div class="codeContent panelContent">
<pre class="code-xml"><span class="code-tag">&lt;context-param&gt;</span>
        <span class="code-tag">&lt;param-name&gt;</span>org.ajax4jsf.xmlparser.ORDER<span class="code-tag">&lt;/param-name&gt;</span>
        <span class="code-tag">&lt;param-value&gt;</span>NEKO<span class="code-tag">&lt;/param-value&gt;</span>
    <span class="code-tag">&lt;/context-param&gt;</span>

    <span class="code-tag">&lt;context-param&gt;</span>
        <span class="code-tag">&lt;param-name&gt;</span>org.ajax4jsf.xmlparser.NEKO<span class="code-tag">&lt;/param-name&gt;</span>
        <span class="code-tag">&lt;param-value&gt;</span>.*\..*<span class="code-tag">&lt;/param-value&gt;</span>
    <span class="code-tag">&lt;/context-param&gt;

</span></pre>
</div>
<div class="codeContent panelContent">
<p>Here we say we only use the NEKO filter and it should be applied to all URLs (<strong>.</strong>)<br />
There is more configuration possible, like using NONE for some pages that don&#8217;t need HTML correction to further speedup things if needed.</p>
<p>Example can be found at: <a rel="nofollow" href="http://jboss.com/index.html?module=bb&amp;op=viewtopic&amp;t=116231" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://jboss.com/index.html?module=bb&amp;op=viewtopic&amp;t=116231');">http://jboss.com/index.html?module=bb&amp;op=viewtopic&amp;t=116231</a></p>
</div>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/java/fix-your-richfaces-ajax-performance-problems/" >Fix your Richfaces AJAX (performance) problems</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/java/fix-your-richfaces-ajax-performance-problems/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
