<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>REVERT TO CONSOLE &#187; Servers</title>
	<atom:link href="http://www.reverttoconsole.com/blog/category/servers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.reverttoconsole.com</link>
	<description>for f in *;do echo &#124; sed &#039;i\rtc&#039; &#62;&#62; $f;done; java programming et al</description>
	<lastBuildDate>Thu, 25 Aug 2011 15:02:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Configuring Tomcat 5.5 JNDI Datasources with Spring</title>
		<link>http://www.reverttoconsole.com/blog/servers/configuring-tomcat-55-jndi-datasources-with-spring/</link>
		<comments>http://www.reverttoconsole.com/blog/servers/configuring-tomcat-55-jndi-datasources-with-spring/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 15:25:07 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://reverttoconsole.com/archives/190</guid>
		<description><![CDATA[First of all, make sure you&#8217;re looking at the Tomcat 5.5 JNDI HowTo, not the Tomcat 5, and definitely not Tomcat 4. Yes, I know this sounds obvious, but once you start googling you&#8217;ll find it&#8217;s hard to distinguish the versions. Place a context definition in /META-INF/context.xml &#8211; this is the preferred 5.5 per-application method [...]]]></description>
			<content:encoded><![CDATA[<p>First of all, make sure you&#8217;re looking at the Tomcat 5.5 JNDI HowTo, not the Tomcat 5, and definitely not Tomcat 4. Yes, I know this sounds obvious, but once you start googling you&#8217;ll find it&#8217;s hard to distinguish the versions.</p>
<p>Place a context definition in /META-INF/context.xml &#8211; this is the preferred 5.5 <em>per-application</em> method <a href="http://tomcat.apache.org/tomcat-5.5-doc/jndi-resources-howto.html">as indicated here</a>. The context file will be copied when deployed to [tomcat]/conf/Catalina/localhost/[webapp_name].xml.</p>
<p>This context file is the where the majority of the jndi configuration will take place. Any datasources configured here will need access to the identified driver class. Put your jars in  $CATALINA_HOME/common/lib.</p>
<p>Example:</p>
<pre>
&lt;context
    crossContext=&quot;true&quot;
    reloadable=&quot;true&quot;
    displayName=&quot;Barack&#039;s Datasource&quot; &gt;

        &lt;resource
            name=&quot;aspiring.presidentDS&quot;
            type=&quot;javax.sql.DataSource&quot;
            driverClassName=&quot;oracle.jdbc.OracleDriver&quot;
            maxIdle=&quot;2&quot;
            maxWait=&quot;5000&quot;
            validationQuery=&quot;select count(*) from elections.election_name&quot;
            username=&quot;bobama&quot;
            password=&quot;top_secret&quot;
            url=&quot;jdbc:oracle:thin:@aspiring.com:1525:bobama&quot;
            maxActive=&quot;20&quot;
            removeAbandoned=&quot;true&quot;
            removeAbandonedTimeout=&quot;60&quot;
            logAbandoned=&quot;true&quot;/&gt;
&lt;/context&gt;
</pre>
<p><strong>Important Note: </strong> Prior to Tomcat 5.5, a &#8220;path&#8221; attribute was required for Context elements (starting with 5.5, the path attribute must not be used except when statically defining a Context in server.xml, as it will be inferred from the Context fragment filename.</p>
<p><strong>Note:</strong> Apparently Loggers are not configured in within the Context element anymore.</p>
<p><strong>Note: </strong> While the [appname].xml is added to <tomcat>/conf/Catalina/localhost/[webapp_name].xml automatically, it does not appear to be overwritten or cleaned up.</p>
<p>As far as spring goes, the only change is the need to prepend <em>java:/comp/env/</em> to the jndi name. So for example, something like this:</p>
<pre>
	&lt;bean id=&quot;webappDataSource&quot; class=&quot;org.springframework.jndi.JndiObjectFactoryBean&quot;&gt;
		&lt;property name=&quot;jndiName&quot; value=&quot;com.aspiring.present.bobamaDS&quot; /&gt;
	&lt;/bean&gt;
</pre>
<p>will become this:</p>
<pre>
	&lt;bean id=&quot;webappDataSource&quot; class=&quot;org.springframework.jndi.JndiObjectFactoryBean&quot;&gt;
		&lt;property name=&quot;jndiName&quot; value=&quot;java:/comp/env/com.aspiring.president.bobamaDS&quot; /&gt;
	&lt;/bean&gt;
</pre>
<p><strong>Resources:</strong></p>
<p><a href="http://tomcat.apache.org/tomcat-5.5-doc/class-loader-howto.html">Tomcat 5.5 Classloader explanation</a></p>
<p><a href="http://tomcat.apache.org/tomcat-5.5-doc/jndi-resources-howto.html">Tomcat 5.5 JNDI Guide</a></p>
<p><a href="http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html">Tomcat JNDI Example HowTo</a></p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-tomcat-55-jndi-datasources-with-spring%2F&amp;title=Configuring+Tomcat+5.5+JNDI+Datasources+with+Spring" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-tomcat-55-jndi-datasources-with-spring%2F&amp;title=Configuring+Tomcat+5.5+JNDI+Datasources+with+Spring" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-tomcat-55-jndi-datasources-with-spring%2F&amp;title=Configuring+Tomcat+5.5+JNDI+Datasources+with+Spring" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-tomcat-55-jndi-datasources-with-spring%2F&amp;title=Configuring+Tomcat+5.5+JNDI+Datasources+with+Spring" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-tomcat-55-jndi-datasources-with-spring%2F&amp;title=Configuring+Tomcat+5.5+JNDI+Datasources+with+Spring', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-tomcat-55-jndi-datasources-with-spring%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-tomcat-55-jndi-datasources-with-spring%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-tomcat-55-jndi-datasources-with-spring%2F&amp;title=Configuring+Tomcat+5.5+JNDI+Datasources+with+Spring" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-tomcat-55-jndi-datasources-with-spring%2F&amp;title=Configuring+Tomcat+5.5+JNDI+Datasources+with+Spring" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.reverttoconsole.com/blog/servers/configuring-tomcat-55-jndi-datasources-with-spring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring A Remote Pine Client for a Dreamhost Account</title>
		<link>http://www.reverttoconsole.com/blog/servers/configuring-a-remote-pine-client-for-a-dreamhost-account/</link>
		<comments>http://www.reverttoconsole.com/blog/servers/configuring-a-remote-pine-client-for-a-dreamhost-account/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 06:21:05 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://reverttoconsole.com/archives/144</guid>
		<description><![CDATA[I wanted to make sure I write this down somewhere, because I always forget how to configure Pine. I found a nice artical here, but had to go to google&#8217;s cache of the page to view it because it&#8217;s password protected now. Here are the configuration entries I made to get pine working with my [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to make sure I write this down somewhere, because I always forget how to configure <a href="http://www.washington.edu/pine/">Pine</a>. I found <a href="http://subterrane.com/files/pine.html">a nice artical here</a>, but had to go to <a href="http://72.14.253.104/search?q=cache:ogKeucmHJDAJ:subterrane.com/files/pine.html+pine+dreamhost&#038;hl=en&#038;ct=clnk&#038;cd=1&#038;client=firefox-a">google&#8217;s cache of the page</a> to view it because it&#8217;s password protected now.</p>
<p>Here are the configuration entries I made to get pine working with my <a href="http://dreamhost.com/">dreamhost</a> account:</p>
<ul>
<li><strong>personal-name: </strong>Enter your name or nickname; this is what receiver of your mail message will see</li>
<li><strong>user-domain: </strong>Enter your domain name. For example, my site is<br />
              http://ehemminger.org so I entered, ehemminger.org.</li>
<li><strong>smtp-server: </strong> This is sometimes the tricky part. If I were remoting into my hosted account, I could use dreamhost&#8217;s smtp server, like this: mail.ehemminger.org/user=jeff@ehemminger.org. But I&#8217;m not, I&#8217;m using pine from my desktop. So instead, I&#8217;ll  use my service provider&#8217;s smtp server. I&#8217;m using <a href="http://www.mcvguam.com/internet.html">Marianas Cablevision</a>, so I checked their site and found that the smtp server is: smtp.guam.net</li>
<li><strong>inbox-path: </strong>At Dreamhost, your Inbox path is &#8220;Inbox&#8221;. In Pine, you must indicate the server, your username, and the folder. The server and user name are contained in curly braces. For example, I entered: {mail.ehemminger.org/user=jeff@ehemminger.org}Inbox</li>
<li><strong>default-fcc: </strong> I set my default fcc (forward carbon copy) to my Sent mail folder. This way, I can keep a<br />
            copy of every message I send. Example: {mail.ehemminger.org/user=jeff@ehemminger.org}Inbox.Sent</li>
</ul>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-a-remote-pine-client-for-a-dreamhost-account%2F&amp;title=Configuring+A+Remote+Pine+Client+for+a+Dreamhost+Account" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-a-remote-pine-client-for-a-dreamhost-account%2F&amp;title=Configuring+A+Remote+Pine+Client+for+a+Dreamhost+Account" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-a-remote-pine-client-for-a-dreamhost-account%2F&amp;title=Configuring+A+Remote+Pine+Client+for+a+Dreamhost+Account" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-a-remote-pine-client-for-a-dreamhost-account%2F&amp;title=Configuring+A+Remote+Pine+Client+for+a+Dreamhost+Account" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-a-remote-pine-client-for-a-dreamhost-account%2F&amp;title=Configuring+A+Remote+Pine+Client+for+a+Dreamhost+Account', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-a-remote-pine-client-for-a-dreamhost-account%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-a-remote-pine-client-for-a-dreamhost-account%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-a-remote-pine-client-for-a-dreamhost-account%2F&amp;title=Configuring+A+Remote+Pine+Client+for+a+Dreamhost+Account" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fconfiguring-a-remote-pine-client-for-a-dreamhost-account%2F&amp;title=Configuring+A+Remote+Pine+Client+for+a+Dreamhost+Account" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.reverttoconsole.com/blog/servers/configuring-a-remote-pine-client-for-a-dreamhost-account/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tomcat Classloader hierarchy, a quick review</title>
		<link>http://www.reverttoconsole.com/blog/servers/tomcat-classloader-hiararchy-a-quick-review/</link>
		<comments>http://www.reverttoconsole.com/blog/servers/tomcat-classloader-hiararchy-a-quick-review/#comments</comments>
		<pubDate>Tue, 26 Jun 2007 15:53:10 +0000</pubDate>
		<dc:creator>Priyatam</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://reverttoconsole.com/archives/124</guid>
		<description><![CDATA[Taken from Tomcat&#8217;s reference page. Tomcat&#8217;s classloader hiararchy looks something like this: Bootstrap &#124; System &#124; Common / \ Catalina Shared / \ Webapp1 Webapp2 .. etc Classloader rules: * Classloaders will only load the &#8220;same&#8221; class once. * Two classes are only the &#8220;same&#8221; if they have the same name, and were loaded by [...]]]></description>
			<content:encoded><![CDATA[<p>Taken from Tomcat&#8217;s <a href="http://tomcat.apache.org/tomcat-4.1-doc/class-loader-howto.html">reference page</a>. Tomcat&#8217;s classloader hiararchy looks something like this:</p>
<pre>
                              Bootstrap
                                  |
                               System
                                  |
                               Common
                              /      \
                         Catalina   Shared
                                     /   \
                                Webapp1  Webapp2 .. etc
</pre>
<p>Classloader rules:</p>
<p>    * Classloaders will only load the &#8220;same&#8221; class once.<br />
    * Two classes are only the &#8220;same&#8221; if they have the same name, and were loaded by the same classloader.<br />
    * When your webapp references a class, if it&#8217;s not already loaded, the search order goes:<br />
      yourWebapp &#8211;> Shared &#8211;> Common &#8211;> System &#8211;> Bootstrap</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Ftomcat-classloader-hiararchy-a-quick-review%2F&amp;title=Tomcat+Classloader+hierarchy%2C+a+quick+review" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Ftomcat-classloader-hiararchy-a-quick-review%2F&amp;title=Tomcat+Classloader+hierarchy%2C+a+quick+review" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Ftomcat-classloader-hiararchy-a-quick-review%2F&amp;title=Tomcat+Classloader+hierarchy%2C+a+quick+review" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Ftomcat-classloader-hiararchy-a-quick-review%2F&amp;title=Tomcat+Classloader+hierarchy%2C+a+quick+review" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Ftomcat-classloader-hiararchy-a-quick-review%2F&amp;title=Tomcat+Classloader+hierarchy%2C+a+quick+review', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Ftomcat-classloader-hiararchy-a-quick-review%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Ftomcat-classloader-hiararchy-a-quick-review%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Ftomcat-classloader-hiararchy-a-quick-review%2F&amp;title=Tomcat+Classloader+hierarchy%2C+a+quick+review" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Ftomcat-classloader-hiararchy-a-quick-review%2F&amp;title=Tomcat+Classloader+hierarchy%2C+a+quick+review" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.reverttoconsole.com/blog/servers/tomcat-classloader-hiararchy-a-quick-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring Tomcat to point to source directory for auto deploy</title>
		<link>http://www.reverttoconsole.com/blog/servers/auto-deploy-with-tomcat-with-source-directory/</link>
		<comments>http://www.reverttoconsole.com/blog/servers/auto-deploy-with-tomcat-with-source-directory/#comments</comments>
		<pubDate>Wed, 09 May 2007 14:44:15 +0000</pubDate>
		<dc:creator>Priyatam</dc:creator>
				<category><![CDATA[Servers]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://reverttoconsole.com/archives/104</guid>
		<description><![CDATA[Tired of manually copying jsp files, or classes/jars that modify frequently to your webapp directory? (even if it means to run a single ant task) You can make Tomcat point to your source codebase and autodeploy automatically. Copy the following into your tomcat/conf/Catalina/localhost/myproject.xml Assuming that you have your entire &#8216;web&#8217; directory structure which has css, [...]]]></description>
			<content:encoded><![CDATA[<p>Tired of manually copying jsp files, or classes/jars that modify frequently to your webapp directory? (even if it means to run a single ant task)</p>
<p>You can make Tomcat point to your source codebase and autodeploy automatically. Copy the following into your tomcat/conf/Catalina/localhost/myproject.xml</p>
<pre>
<?xml version="1.0" encoding="UTF-8"?>

<!-- To do a local deployment. For developers use Edit the docBase to your local directory-->
<context path="/myproject" docBase="/Users/worldsGreatestDeveloper/eclipse/workspace/myprojects/web"
         debug="0" privileged="true" reloadable="true" orverride="true">
</context>
</pre>
<p>Assuming that you have your entire &#8216;web&#8217; directory structure which has css, js, WEB-INF/* like structure in your workspace, you no longer need to manually deploy or run an ant task to copy your classes. Any jsp changes or controller classes will automatically be detected and redeployed if necessary</p>

<span class="slashdigglicious">
<a href="http://slashdot.org/bookmark.pl?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fauto-deploy-with-tomcat-with-source-directory%2F&amp;title=Configuring+Tomcat+to+point+to+source+directory+for+auto+deploy" title="Slashdot It!"><img src="http://slashdot.org/favicon.ico" height="16" width="16" alt="[Slashdot]" /></a>
<a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fauto-deploy-with-tomcat-with-source-directory%2F&amp;title=Configuring+Tomcat+to+point+to+source+directory+for+auto+deploy" title="Digg This Story"><img src="http://digg.com/favicon.ico" width="16" height="16" alt="[Digg]" /></a>
<a href="http://reddit.com/submit?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fauto-deploy-with-tomcat-with-source-directory%2F&amp;title=Configuring+Tomcat+to+point+to+source+directory+for+auto+deploy" title="Reddit"><img src="http://reddit.com/favicon.ico" width="16" height="16" alt="[Reddit]" /></a>
<a href="http://del.icio.us/post?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fauto-deploy-with-tomcat-with-source-directory%2F&amp;title=Configuring+Tomcat+to+point+to+source+directory+for+auto+deploy" title="Save to del.icio.us" onclick="window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fauto-deploy-with-tomcat-with-source-directory%2F&amp;title=Configuring+Tomcat+to+point+to+source+directory+for+auto+deploy', 'delicious', 'toolbar=no,width=700,height=400'); return false;"><img src="http://images.del.icio.us/static/img/delicious.small.gif" width="16" height="16" alt="[del.icio.us]" /></a>
<a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fauto-deploy-with-tomcat-with-source-directory%2F" title="Share on Facebook"><img src="http://www.facebook.com/favicon.ico" width="16" height="16" alt="[Facebook]" /></a>
<a href="http://technorati.com/faves?add=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fauto-deploy-with-tomcat-with-source-directory%2F" title="Add to my Technorati Favorites"><img src="http://technorati.com/favicon.ico" width="16" height="16" alt="[Technorati]" /></a>
<a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fauto-deploy-with-tomcat-with-source-directory%2F&amp;title=Configuring+Tomcat+to+point+to+source+directory+for+auto+deploy" title="Save to Google Bookmarks"><img src="http://www.google.com/favicon.ico" width="16" height="16" alt="[Google]" /></a>
<a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.reverttoconsole.com%2Fblog%2Fservers%2Fauto-deploy-with-tomcat-with-source-directory%2F&amp;title=Configuring+Tomcat+to+point+to+source+directory+for+auto+deploy" title="Stumble it!"><img src="http://www.stumbleupon.com/favicon.ico" width="16" height="16" alt="[StumbleUpon]" /></a>
</span>]]></content:encoded>
			<wfw:commentRss>http://www.reverttoconsole.com/blog/servers/auto-deploy-with-tomcat-with-source-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

