<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:ymaps="http://api.maps.yahoo.com/Maps/V2/AnnotatedMaps.xsd">

<channel>
	<title>austenconstable.com &#187; Java</title>
	<atom:link href="http://www.austenconstable.com/category/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.austenconstable.com</link>
	<description>a year in the merde</description>
	<lastBuildDate>Thu, 15 Oct 2009 16:19:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Analysing email addresses with Hibernate Search &amp; Solr</title>
		<link>http://www.austenconstable.com/2009/10/15/analyzing-email-addresses-with-hibernate-search-solr/</link>
		<comments>http://www.austenconstable.com/2009/10/15/analyzing-email-addresses-with-hibernate-search-solr/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 16:02:25 +0000</pubDate>
		<dc:creator>Austen</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[Lucene]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Solr]]></category>

		<guid isPermaLink="false">http://www.austenconstable.com/?p=229</guid>
		<description><![CDATA[On first appearance WordDelimiterFilterFactory seems like the most appropriate solution to the problem. It splits words into sub words on intra-word delimiters. So: &#8220;email@someserver.com&#8221; -&#62; &#8220;email&#8221;, &#8220;someserver&#8221;, &#8220;com&#8221; This works well except for the fact that it splits on all &#8230; <a href="http://www.austenconstable.com/2009/10/15/analyzing-email-addresses-with-hibernate-search-solr/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>On first appearance WordDelimiterFilterFactory seems like the most appropriate solution to the problem. It splits words into sub words on intra-word delimiters.</p>
<p>So:</p>
<ul>
<li>&#8220;email@someserver.com&#8221; -&gt; &#8220;email&#8221;, &#8220;someserver&#8221;, &#8220;com&#8221;</li>
</ul>
<p>This works well except for the fact that it splits on <em>all</em> intra-word delimiters, and when combined with the StandardAnalyzer splits on letter-number transitions.</p>
<p>So:</p>
<ul>
<li>&#8220;email@some-server.com&#8221; -&gt; &#8220;email&#8221;, &#8220;some&#8221;, &#8220;server&#8221;, &#8220;com&#8221;</li>
<li>&#8220;email@server5.com&#8221;  -&gt; &#8220;email&#8221;, &#8220;server&#8221;, &#8220;5&#8243;, &#8220;com&#8221;</li>
</ul>
<p>Which is fine unless your users want to search for &#8220;server5&#8243; say or &#8220;some-server&#8221; (without analysing the search query itself).</p>
<p>And so the strategy I&#8217;ve taken is as follows,</p>
<ol>
<li>Use the PatternTokenizerFactory and split on &#8220;.&#8221; and &#8220;@&#8221;</li>
<li>Filter to lower case using LowerCaseFilterFactory</li>
<li>Store the full email address in a separate field</li>
</ol>
<p>Which now means that:</p>
<ul>
<li>&#8220;email@some-server.com&#8221; -&gt; &#8220;email&#8221;, &#8220;some-server&#8221;, &#8220;com&#8221;</li>
<li>&#8220;email@server5.com&#8221;  -&gt; &#8220;email&#8221;, &#8220;server5&#8243;, &#8220;com&#8221;</li>
</ul>
<p>Searches for &#8220;server5&#8243; and &#8220;some-server&#8221; are now found.</p>
<p>There is naturally some room for improvement for example what if the user searches for &#8220;server&#8221; and &#8220;5&#8243;,  they would reasonably expect anything that matched &#8220;server5&#8243; to be returned. At the moment I&#8217;m handling this by allowing wildcard searches so &#8220;server*&#8221; does the trick. It may need revisiting, but only time will tell&#8230;</p>
<p>In case you&#8217;re wondering how that gets put together here&#8217;s a source snippet:</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">@<span style="color: #003399;">Entity</span>
@Indexed
@Table<span style="color: #009900;">&#40;</span>name <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;user&quot;</span>, catalog <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;somedb&quot;</span><span style="color: #009900;">&#41;</span>
@AnalyzerDef<span style="color: #009900;">&#40;</span>
  name <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;email&quot;</span>,
  tokenizer <span style="color: #339933;">=</span> @TokenizerDef<span style="color: #009900;">&#40;</span>
    factory <span style="color: #339933;">=</span> PatternTokenizerFactory.<span style="color: #000000; font-weight: bold;">class</span>, params <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span>
      @Parameter<span style="color: #009900;">&#40;</span>name <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;pattern&quot;</span>, value <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\\</span>.|<span style="color: #000099; font-weight: bold;">\\</span>@&quot;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>,
    filters <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span>
      @TokenFilterDef<span style="color: #009900;">&#40;</span>factory <span style="color: #339933;">=</span> LowerCaseFilterFactory.<span style="color: #000000; font-weight: bold;">class</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> User <span style="color: #000000; font-weight: bold;">implements</span> java.<span style="color: #006633;">io</span>.<span style="color: #003399;">Serializable</span> <span style="color: #009900;">&#123;</span>
...
    @Column<span style="color: #009900;">&#40;</span>name <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;email&quot;</span>, nullable <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">false</span>, unique <span style="color: #339933;">=</span> <span style="color: #000066; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span>
    @Fields<span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#123;</span>
      @<span style="color: #003399;">Field</span><span style="color: #009900;">&#40;</span>name <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;fullEmail&quot;</span>, index <span style="color: #339933;">=</span> Index.<span style="color: #006633;">UN_TOKENIZED</span>, store <span style="color: #339933;">=</span> Store.<span style="color: #006633;">YES</span><span style="color: #009900;">&#41;</span>,
      @<span style="color: #003399;">Field</span><span style="color: #009900;">&#40;</span>index <span style="color: #339933;">=</span> Index.<span style="color: #006633;">TOKENIZED</span>, analyzer <span style="color: #339933;">=</span> @Analyzer<span style="color: #009900;">&#40;</span>definition <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;email&quot;</span><span style="color: #009900;">&#41;</span>, store <span style="color: #339933;">=</span> Store.<span style="color: #006633;">YES</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #003399;">String</span> getEmail<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000000; font-weight: bold;">return</span> <span style="color: #000000; font-weight: bold;">this</span>.<span style="color: #006633;">email</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
...
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Additional resources :</p>
<p><a href="http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters" onclick="pageTracker._trackPageview('/outgoing/wiki.apache.org/solr/AnalyzersTokenizersTokenFilters?referer=');">http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.austenconstable.com/2009/10/15/analyzing-email-addresses-with-hibernate-search-solr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO: Remove GWT package from url when using gwt-maven</title>
		<link>http://www.austenconstable.com/2009/03/13/howto-remove-gwt-package-from-url-when-using-gwt-maven/</link>
		<comments>http://www.austenconstable.com/2009/03/13/howto-remove-gwt-package-from-url-when-using-gwt-maven/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 14:49:05 +0000</pubDate>
		<dc:creator>Austen</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[GWT]]></category>
		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://www.austenconstable.com/?p=193</guid>
		<description><![CDATA[Seriously, who wants a url like /my.long.package.name.Application/Application.html To remedy this use the following steps: Make the webapp directory the same as the output for your gwt code. ... &#60;plugin&#62; &#60;groupId&#62;org.apache.maven.plugins&#60;/groupId&#62; &#60;artifactId&#62;maven-war-plugin&#60;/artifactId&#62; &#60;configuration&#62; &#60;webappDirectory&#62;${project.build.directory}/${project.build.finalName}/my.long.package.name.Application &#60;/webappDirectory&#62; &#60;/configuration&#62; &#60;/plugin&#62; ... Ensure that your &#8230; <a href="http://www.austenconstable.com/2009/03/13/howto-remove-gwt-package-from-url-when-using-gwt-maven/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Seriously, who wants a url like /my.long.package.name.Application/Application.html</p>
<p>To remedy this use the following steps:</p>
<ol>
<li>Make the webapp directory the same as the output for your gwt code.

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">...
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;plugin<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;groupId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>org.apache.maven.plugins<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/groupId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;artifactId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>maven-war-plugin<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/artifactId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;configuration<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;webappDirectory<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>${project.build.directory}/${project.build.finalName}/my.long.package.name.Application	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/webappDirectory<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/configuration<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/plugin<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
...</pre></div></div>

</li>
<li>Ensure that your rpc servlets don&#8217;t have the package as a prefix.

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">...
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;plugin<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;groupId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>com.totsp.gwt<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/groupId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;artifactId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>maven-googlewebtoolkit2-plugin<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/artifactId<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	...
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;configuration<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		...
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;webXmlServletPathAsIs<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>true<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/webXmlServletPathAsIs<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/configuration<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	...
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/plugin<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
...</pre></div></div>

</li>
<li>Change your index.html file to point to your app.<br />
From:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">meta</span> <span style="color: #000066;">http-equiv</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;REFRESH&quot;</span> <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;0;url=my.long.package.name.Application/Application.html&quot;</span>&gt;</span></pre></div></div>

<p>To:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">meta</span> <span style="color: #000066;">http-equiv</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;REFRESH&quot;</span> <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;0;url=Application.html&quot;</span>&gt;</span></pre></div></div>

</li>
<li>Your done.</li>
</ol>
<p>Additional resources:<br />
<a href="http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/f8b06676098b8cc6" onclick="pageTracker._trackPageview('/outgoing/groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/f8b06676098b8cc6?referer=');">http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/f8b06676098b8cc6</a></p>
<p><a href="http://groups.google.com/group/gwt-maven/browse_thread/thread/a46f540ca823e3d3/7d5febf0776958db?lnk=gst&amp;q=rename#7d5febf0776958db" onclick="pageTracker._trackPageview('/outgoing/groups.google.com/group/gwt-maven/browse_thread/thread/a46f540ca823e3d3/7d5febf0776958db?lnk=gst_amp_q=rename_7d5febf0776958db&amp;referer=');">http://groups.google.com/group/gwt-maven/browse_thread/thread/a46f540ca823e3d3/7d5febf0776958db?lnk=gst&amp;q=rename#7d5febf0776958db</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.austenconstable.com/2009/03/13/howto-remove-gwt-package-from-url-when-using-gwt-maven/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO: Run your java web app as the root context on Tomcat</title>
		<link>http://www.austenconstable.com/2009/03/13/howto-run-your-java-web-app-as-the-root-context-on-tomcat/</link>
		<comments>http://www.austenconstable.com/2009/03/13/howto-run-your-java-web-app-as-the-root-context-on-tomcat/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 10:21:30 +0000</pubDate>
		<dc:creator>Austen</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[Tomcat]]></category>

		<guid isPermaLink="false">http://www.austenconstable.com/?p=186</guid>
		<description><![CDATA[If you have a context XML fragment in your war (META-INF/context.xml) then it&#8217;s as easy as renaming your war file to ROOT.war If you&#8217;re using the maven build system then just alter your pom to have: &#60;build&#62; &#60;finalName&#62;ROOT&#60;/finalName&#62; ... &#60;/build&#62; &#8230; <a href="http://www.austenconstable.com/2009/03/13/howto-run-your-java-web-app-as-the-root-context-on-tomcat/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you have a context XML fragment in your war (<code>META-INF/context.xml</code>) then it&#8217;s as easy as renaming your war file to <code>ROOT.war</code></p>
<p>If you&#8217;re using the maven build system then just alter your pom to have:</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;build<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;finalName<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>ROOT<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/finalName<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	...
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/build<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>Simple when you know how&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.austenconstable.com/2009/03/13/howto-run-your-java-web-app-as-the-root-context-on-tomcat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO: Setup a shell Java Struts 2 web app using Maven 2 &amp; Eclipse 3.4</title>
		<link>http://www.austenconstable.com/2008/11/26/howto-setup-a-shell-java-struts-2-web-app-using-maven-2-eclipse-34/</link>
		<comments>http://www.austenconstable.com/2008/11/26/howto-setup-a-shell-java-struts-2-web-app-using-maven-2-eclipse-34/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 16:17:16 +0000</pubDate>
		<dc:creator>Austen</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[maven]]></category>
		<category><![CDATA[struts2]]></category>

		<guid isPermaLink="false">http://www.austenconstable.com/?p=180</guid>
		<description><![CDATA[The latest project I&#8217;m working on is a Java web app using Struts 2. I wanted to use the eclipse IDE since it&#8217;s industry standard and the Maven 2 build system for compatibility with other company projects. I did plenty &#8230; <a href="http://www.austenconstable.com/2008/11/26/howto-setup-a-shell-java-struts-2-web-app-using-maven-2-eclipse-34/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The latest project I&#8217;m working on is a Java web app using Struts 2. I wanted to use the eclipse IDE since it&#8217;s industry standard and the Maven 2 build system for compatibility with other company projects.</p>
<p>I did plenty of reading (<a href="http://books.sonatype.com/maven-book/" onclick="pageTracker._trackPageview('/outgoing/books.sonatype.com/maven-book/?referer=');">Maven: The Definitive Guide</a> is a good place to start), but nowhere did I find an easy step-by-step quickstart for this combination of tools.</p>
<p>So I&#8217;ve pieced my reading and research together and here it is:</p>
<h3>Prerequisites</h3>
<p>Java<br />
maven 2<br />
eclipse 3.4.1</p>
<h3>Create a new skeleton project:</h3>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> ~<span style="color: #000000; font-weight: bold;">/</span>workspace<span style="color: #000000; font-weight: bold;">/&lt;/</span>br<span style="color: #000000; font-weight: bold;">&gt;</span>
mvn archetype:generate <span style="color: #660033;">-DgroupId</span>=<span style="color: #7a0874; font-weight: bold;">&#123;</span>name of your group e.g. com.austenconstable<span style="color: #7a0874; font-weight: bold;">&#125;</span> \
<span style="color: #660033;">-DartifactId</span>=<span style="color: #7a0874; font-weight: bold;">&#123;</span>name of your app<span style="color: #7a0874; font-weight: bold;">&#125;</span> \
<span style="color: #660033;">-DarchetypeGroupId</span>=org.apache.struts \
<span style="color: #660033;">-DarchetypeArtifactId</span>=struts2-archetype-starter \
<span style="color: #660033;">-DarchetypeVersion</span>=2.0.11.2</pre></td></tr></table></div>

<p>If you&#8217;re not sure on the latest struts 2 archetype release version check <a href="http://repo1.maven.org/maven2/org/apache/struts/struts2-archetype-starter/" onclick="pageTracker._trackPageview('/outgoing/repo1.maven.org/maven2/org/apache/struts/struts2-archetype-starter/?referer=');">here</a>.</p>
<h3>Generate the eclipse project files:</h3>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mvn eclipse:eclipse</pre></div></div>

<h3>Configure eclipse:</h3>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mvn eclipse:configure-workspace -Declipse.workspace=<span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>your<span style="color: #000000; font-weight: bold;">/</span>workspace<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<h3>Import the project into eclipse:</h3>
<p>Fire up eclipse and use File>Import&#8230;</p>
<p>And now all you need to do is build your app!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.austenconstable.com/2008/11/26/howto-setup-a-shell-java-struts-2-web-app-using-maven-2-eclipse-34/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

