User stian - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T04:43:49Z http://stackoverflow.com/feeds/user/17542 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1779192/gwt-2-0-rc1-gxt-2-0-1/1779204#1779204 1 Answer by stian for GWT 2.0 RC1 & GXT 2.0.1 stian 2009-11-22T16:38:23Z 2009-11-22T16:38:23Z <p>GWT 2.0 MS2 and GXT 2.0.1 has worked fine for me at least so far. But I will probably get rid of the whole GXT stuff soon. It's such a hog..</p> http://stackoverflow.com/questions/1258834/integrating-crm-with-google-maps/1745701#1745701 0 Answer by stian for Integrating CRM with Google maps stian 2009-11-17T00:01:28Z 2009-11-17T00:01:28Z <p>I know this is an ancient question, but since there's no answers and this is pretty much all that came up on google when searching for Zoho CRM integration with Google Maps I'll take a stab at this anyway. I recently got a similiar request, but in this case they wanted to display the leads on a page outside of Zoho. </p> <p>I created a Java servlet and JSP that runs on Google App Engine. The servlet will connect to Zoho CRM to retrieve all leads and geocode the addresses they are registered with. The client-side Javascript is then taking care of creating the markers on the map for all the addresses. </p> <p>It's a bit too much code to paste here (although not that much), but you can check it out at <a href="http://code.google.com/p/zohomap/" rel="nofollow">http://code.google.com/p/zohomap/</a>. </p> <p>I put the demo up at <a href="http://zohomap.appspot.com/" rel="nofollow">http://zohomap.appspot.com/</a>. </p> http://stackoverflow.com/questions/1542082/how-to-teach-lesson-to-spammers/1542149#1542149 2 Answer by stian for How to teach lesson to spammers ? stian 2009-10-09T06:38:18Z 2009-11-13T10:11:45Z <p>I don't think there's much you can do about your regular "viagra"-spam, however if you get a lot of those "Nigerian"-letters you could go on a scambait adventure and make the spammer carve <a href="http://www.419eater.com/html/john%5Fboko.htm" rel="nofollow">a wooden C64</a>... </p> <p>Be careful though, you don't want these guys finding out where you live!</p> http://stackoverflow.com/questions/1566948/beginner-assigning-values-to-arrays-in-java/1566974#1566974 0 Answer by stian for Beginner: Assigning values to arrays in Java stian 2009-10-14T15:13:19Z 2009-10-14T15:13:19Z <p>I believe you need to initialize pop[j] before doing pop[j].genes[i] = rand.nextInt();</p> <pre><code> Individual pop[] = new Individual[p]; </code></pre> <p>This just initializes the array, not the individual elements. Try to put pop[j] = new Individual() between your two loops.</p> http://stackoverflow.com/questions/1542298/creating-a-null-hyperlink/1542461#1542461 0 Answer by stian for Creating a null hyperlink stian 2009-10-09T08:01:40Z 2009-10-09T08:01:40Z <p>You can also add an event handler programatically, add something like this in your javascript onload section (e.g. window.onload()): </p> <pre><code>function clickHandler() { event.preventDefault(); // do some javascript stuff } document.getElementById("link").addEventListener("click", clickHandler, false); </code></pre> <p>Link in HTML page:</p> <p><code>&lt;a id="link" href="#"&gt;Some link&lt;/a&gt;</code> </p> http://stackoverflow.com/questions/1542103/after-merging-a-branch-to-trunk-in-subsvn-will-you-delete-the-branch/1542131#1542131 1 Answer by stian for After merging a branch to trunk in subsvn, will you delete the branch? stian 2009-10-09T06:33:34Z 2009-10-09T06:33:34Z <p>I'd keep it. The SVN tree gives you a lot of history about your source code repository.</p> http://stackoverflow.com/questions/1542076/is-it-possible-to-use-ext-gwt-and-smart-gwt-components-in-the-same-project/1542114#1542114 1 Answer by stian for Is it possible to use Ext GWT and Smart GWT components in the same project? stian 2009-10-09T06:29:24Z 2009-10-09T06:29:24Z <p>In theory I don't see why it shouldn't be possible. However, the components uses different layouts so I think you'll quickly run into a mess (just even try to use regular GWT widgets with Ext GWT...). And you'll also incur a big penalty by loading two widget libraries for your application. </p> <p>SmartGWT has most of the same components as Ext GWT so if there's something in SmartGWT that you need and Ext GWT doesn't have, I suggest you consider switching over to SmartGWT completely. I'd imagine that would be a lot less of a hassle than making the components work together. I've migrated a project between GWT widget libraries (from Ext GWT to GWT Ext) earlier, and it wasn't really that painful.</p> http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments 5 How do you maintain java webapps in different staging environments? stian 2008-09-18T16:05:09Z 2009-09-08T03:55:18Z <p>You might have a set of properties that is used on the developer machine, which varies from developer to developer, another set for a staging environment, and yet another for the production environment. </p> <p>In a Spring application you may also have beans that you want to load in a local environment but not in a production environment, and vice versa. </p> <p>How do you handle this? Do you use separate files, ant/maven resource filtering or other approaches? </p> http://stackoverflow.com/questions/725534/converting-a-stripes-application-to-use-friendly-urls/1306076#1306076 0 Answer by stian for Converting a Stripes application to use Friendly URLs stian 2009-08-20T13:05:46Z 2009-08-20T13:05:46Z <p>It didn't work for me to just replace the Dispatcher servlet with the DynamicMappingFilter (I got an error message about the DynamicMappingFilter only works in conjunction with the StripesFilter). So I have two filters and one filter-mapping configured in my web.xml now:</p> <pre><code>&lt;filter&gt; &lt;display-name&gt;Stripes Filter&lt;/display-name&gt; &lt;filter-name&gt;StripesFilter&lt;/filter-name&gt; &lt;filter-class&gt;net.sourceforge.stripes.controller.StripesFilter&lt;/filter-class&gt; &lt;init-param&gt; &lt;param-name&gt;ActionResolver.Packages&lt;/param-name&gt; &lt;param-value&gt;com.package.myactions.package&lt;/param-value&gt; &lt;/init-param&gt; &lt;/filter&gt; &lt;filter&gt; &lt;description&gt;Dynamically maps URLs to ActionBeans.&lt;/description&gt; &lt;display-name&gt;Stripes Dynamic Mapping Filter&lt;/display-name&gt; &lt;filter-name&gt;DynamicMappingFilter&lt;/filter-name&gt; &lt;filter-class&gt; net.sourceforge.stripes.controller.DynamicMappingFilter &lt;/filter-class&gt; &lt;/filter&gt; &lt;filter-mapping&gt; &lt;filter-name&gt;DynamicMappingFilter&lt;/filter-name&gt; &lt;url-pattern&gt;/*&lt;/url-pattern&gt; &lt;dispatcher&gt;REQUEST&lt;/dispatcher&gt; &lt;dispatcher&gt;FORWARD&lt;/dispatcher&gt; &lt;dispatcher&gt;INCLUDE&lt;/dispatcher&gt; &lt;/filter-mapping&gt; </code></pre> http://stackoverflow.com/questions/959950/recommend-a-java-framework/959962#959962 0 Answer by stian for Recommend A Java Framework stian 2009-06-06T15:43:16Z 2009-06-06T15:43:16Z <p>I highly recommend you take a good look at <a href="http://grails.org" rel="nofollow">Grails</a>. It is based on the well-established Spring DI framework and Hibernate ORM. You can use plain Java code as well as the more leaner and similiar dynamic Groovy language.</p> http://stackoverflow.com/questions/895125/how-to-find-out-whether-or-not-a-date-is-1-year-before-todays-date-in-java/895206#895206 1 Answer by stian for how to find out whether or not a date is 1 year before today's date in java stian 2009-05-21T21:14:38Z 2009-05-21T21:14:38Z <p>If you call getTime() on a date object it will return a long with milliseconds since epoch (jan 1. 1970). Checking if a date is within the last year is then a simple matter of creating one date object with a date one year ago and doing comparison on the long values (someDate > aYearAgo). Alternatively you can use the after() method on a calendar object. To create a calendar/date object with a value one year ago you can use calObj.add(Calendar.YEAR, -1).</p> http://stackoverflow.com/questions/91678/how-can-i-specify-the-local-address-on-a-java-net-urlconnection 4 How can I specify the local address on a java.net.URLConnection? stian 2008-09-18T11:12:16Z 2009-04-24T07:12:04Z <p>My Tomcat instance is listening to multiple IP adress, but I want to control what source IP address is used when opening a URLConnection. How can I specify this?</p> http://stackoverflow.com/questions/347049/do-you-have-any-comments-on-using-gwt-with-appengine/752721#752721 1 Answer by stian for Do you have any comments on using GWT with Appengine? stian 2009-04-15T17:03:22Z 2009-04-15T17:03:22Z <p>Since Google AppEngine now supports Java using GWT just became a whole lot easier (ie. you can use GWT RPC).</p> <p>Take a look this <a href="http://www.youtube.com/watch?v=Ezm7MJeMa9M" rel="nofollow">screencast</a>.</p> http://stackoverflow.com/questions/752556/flex-air-or-google-gears-or-other/752588#752588 0 Answer by stian for Flex/air or google gears or other... stian 2009-04-15T16:36:27Z 2009-04-15T16:36:27Z <p>Google gears will allow off-line data view, but to create a stand-alone desktop application you'll need AIR or something similiar (you can combine Gears with ie. GWT and run in with AIR, or use Flex).</p> http://stackoverflow.com/questions/694513/how-to-install-tomcat-on-windows-xp/694526#694526 3 Answer by stian for How to install Tomcat on Windows XP? stian 2009-03-29T11:58:39Z 2009-03-29T11:58:39Z <p>Tomcat 6 doesn't really need the full JDK and it runs with Java 1.5 as well, so Java wise you should be well off. Just make sure that JAVA_HOME environment variable is set.</p> <p>You can either get the core zip or tar.gz file, or the Windows Service installer file.</p> <p>Core zip file: </p> <p><a href="http://www.apache.org/dist/tomcat/tomcat-6/v6.0.18/bin/apache-tomcat-6.0.18.zip" rel="nofollow">http://www.apache.org/dist/tomcat/tomcat-6/v6.0.18/bin/apache-tomcat-6.0.18.zip</a></p> <p>Just unzip it and run bin/startup.bat. If you'd like to install it as a Windows service (and get the "usual" program entry in Windows add/remove programs) you can get the Windows Service Installer file instead:</p> <p><a href="http://www.apache.org/dist/tomcat/tomcat-6/v6.0.18/bin/apache-tomcat-6.0.18.exe" rel="nofollow">http://www.apache.org/dist/tomcat/tomcat-6/v6.0.18/bin/apache-tomcat-6.0.18.exe</a></p> <p>By default tomcat listens to port 8080, so to check out the sample apps you need to go to <a href="http://localhost:8080/examples/" rel="nofollow">http://localhost:8080/examples/</a>. You can change the default port by editing server.xml in the conf directory.</p> http://stackoverflow.com/questions/401965/wap-push-atop-flash-sms/534266#534266 0 Answer by stian for WAP Push atop FLASH SMS stian 2009-02-10T21:22:59Z 2009-02-10T21:22:59Z <p>Although theoretically possible I think phones in general are unable to handle this combination. </p> <p>You'll have to stick with either flash or push messages. I don't think there's any way you can improve the user experience with wap push, other than making sure the message and the content of the wap page you push is clear and concise. Is wap push messages really such a bad user experience that they need this improvement? I find them to be easy to use and they aren't stored in the SMS inbox so in that sense they "dissappear" just like the flash sms.</p> <p>You could send one flash sms informing the user that he is about to receieve a link and then send the push message, but depending on your application that might just make the user experience worse..</p> http://stackoverflow.com/questions/521110/examples-of-good-java-desktop-applications/530326#530326 0 Answer by stian for Examples of good Java desktop applications stian 2009-02-09T22:25:04Z 2009-02-09T22:25:04Z <p><a href="http://freecol.sf.net/" rel="nofollow">FreeCol</a>, an open source clone of the classic Sid Meier game, Colonization.</p> http://stackoverflow.com/questions/529309/open-source-java-xslt-2-0-implementation/530122#530122 2 Answer by stian for Open-source java XSLT 2.0 implementation? stian 2009-02-09T21:40:57Z 2009-02-09T22:07:11Z <p>Are you sure you <em>really</em> need a namespace aware processor? It might help find errors in the stylesheets quicker but the cost might outweigh the benefit (both in terms of money, and license-wise).</p> <p>Saxon-SA is the schema-aware version of Saxon B. It includes the open source Saxon B in full (published under the Mozilla Public License). It's only the "schema-aware" stuff which is closed source, so most of it is still free software (though only as in free speech..).</p> http://stackoverflow.com/questions/527945/batch-deletion-purging-of-records-via-java-orm/530231#530231 0 Answer by stian for Batch deletion / purging of records via Java ORM stian 2009-02-09T22:05:55Z 2009-02-09T22:05:55Z <p>I believe you can use HQL (JPA QL) direct DML operations which will bypass the persistence context and cache, and execute the (resulting SQL) statements directly:</p> <pre><code>Query q = session.createQuery("delete YourEntity ye where ye.something like :param"); q.setParameter("param", "anything"); int deletedEntities = q.executeUpdate(); </code></pre> http://stackoverflow.com/questions/529734/how-do-you-name-your-projects/529838#529838 -1 Answer by stian for How do you name your projects? stian 2009-02-09T20:41:02Z 2009-02-09T20:41:02Z <p>For personal projects I sometimes use names of big cities, like New York, Berlin, Tokyo etc. It' both convenient since I feel the project isn't bound to a specific technology or function and can involve into whatever it might be, while at the same time it can be a bit difficult remembering if it was Tokyo or Oslo which was doing "that" cool thing..</p> <p>At work we have a tradition for more simple and descriptive names. For instance an application that uploads files according to a schedule is called ScheduledFileUploader. And then there's FileOrganizer, MailSender, DiskSpaceMonitor et.c..</p> http://stackoverflow.com/questions/94592/how-do-you-visualize-logfiles-in-realtime 2 How do you visualize logfiles in realtime? stian 2008-09-18T17:18:28Z 2009-01-11T16:17:11Z <p>Sometimes it might be useful, but mostly just looking cool or impressive to visualize log files (anything from http requests and to bandwith usage to cups of coffee drunk per day). I know about <a href="http://www.visitorville.com/" rel="nofollow">Visitorville</a> which I think look a bit silly, and then there's <a href="http://www.fudgie.org/" rel="nofollow">gltail</a>. </p> <p>How do you "visualize" your log files in realtime?</p> http://stackoverflow.com/questions/376561/openid-java/402950#402950 1 Answer by stian for OpenID Java stian 2008-12-31T13:16:33Z 2008-12-31T13:16:33Z <p>I am currently using Openid4Java in a Grails application in Tomcat and it works quite well. There's a few issues with the (very old) binary that is on the download site code.sxip.com, namely that it doesn't work at all with Yahoo or myopenid.com implementations. If you want to use it you can find a binary on the projects Google groups, or get the source code from the Subversion repository and built it from there. It's quite trivial, basically just an ant script you need to run.</p> http://stackoverflow.com/questions/400250/tool-for-testing-using-parameter-permutations 2 Tool for testing using parameter permutations stian 2008-12-30T13:32:48Z 2008-12-30T14:57:24Z <p>I remember there existed a testing program/library that will run your code and/or unit tests, creating all kinds of permutations of the parameters (null values, random integers, strings and so on). I just can't remember what it was called and searching google doesn't seem to come up with anything.</p> <p>I know it was created for Java code and I think it was quite expensive as well. That's really all I can remember, anyone have a clue what program/library I am thinking about?</p> http://stackoverflow.com/questions/400256/how-can-i-draw-a-box-using-css-like-the-answer-box-in-stackoverflow/400410#400410 4 Answer by stian for How can i draw a box using css like the answer box in stackoverflow? stian 2008-12-30T14:35:53Z 2008-12-30T14:35:53Z <p>Use Firebug and the "Inspect" function; point at the answer box here on SO and rip the HTML and CSS from the Firebug console.</p> http://stackoverflow.com/questions/400382/how-does-a-good-developer-keep-from-creating-code-with-a-high-bus-hit-factor/400397#400397 -1 Answer by stian for How does a good developer keep from creating code with a high bus hit factor? stian 2008-12-30T14:32:47Z 2008-12-30T14:32:47Z <p>As a good developer you should not care about your bus hit factor. The important thing is that you decide when to run in front of the bus, and not your employer.</p> http://stackoverflow.com/questions/236793/how-to-group-gwt-rpc-calls/400093#400093 0 Answer by stian for How to group gwt-rpc calls ? stian 2008-12-30T11:49:37Z 2008-12-30T11:49:37Z <p>It's a good question but I don't think there's an easy solution.</p> <p>I believe you'll have to create a separate method that groups together your methods to achieve batching in a similiar way to DWR.</p> <p>Ie if you have:</p> <pre><code>public int add(int x, int y); public int sub(int i, int j); </code></pre> <p>You'd create a new method to combine them:</p> <pre><code>public Map&lt;String, Integer&gt; addAndSub(Map methodsAndArguments) { // Call add and sub methods with it's arguments } </code></pre> <p>You will still need to handle the whole response in the same callback method of course.</p> <p>I realize it might not be the most elegant solution but due to the way GWTs RPC work I think it's the way to go. With GWT I think you should generally try to write your methods so that batching won't even be an issue you need to consider.</p> http://stackoverflow.com/questions/345541/secure-name-for-the-admin-area-url-of-a-site/400048#400048 0 Answer by stian for Secure name for the admin area URL of a site? stian 2008-12-30T11:21:47Z 2008-12-30T11:21:47Z <p>I prefer not to maintain a separate admin area in addition to the main site at all. I rather display different options and actions available depending on the role/level and ACLs of the logged in user.</p> <p>And yes, security through obscurity is a bad idea!</p> http://stackoverflow.com/questions/398840/productivity-superstar-frameworks-tools-for-side-gigs/400014#400014 0 Answer by stian for productivity superstar frameworks/tools for side gigs stian 2008-12-30T11:07:07Z 2008-12-30T11:07:07Z <p>I recommend looking into <a href="http://grails.org" rel="nofollow">Grails</a>. It uses <a href="http://groovy.codehaus.org/" rel="nofollow">Groovy</a> which is similiar to Java (so if you know this already you're good to go). Groovy runs on the JVM so you can still use all the great libraries already available for Java. Yet, since it's a dynamic language with a lot of the similar bells and whistles like Ruby you can use closures and that kind of neat stuff when you need/want to. And you're not slowed down by Java's traditonal slow compile-deploy-test development cycle.</p> <p>Grails is already setup with <a href="http://hibernate.org/" rel="nofollow">Hibernate</a> and <a href="http://www.springsource.org/about" rel="nofollow">Spring</a>. You can create CRUD application in practically no-time (pretty much like Rails applications), and at the same time drill down and be able to control every little details since it's built on such proven and well-supported technologies. In addition there's literally hundreds of plugins available that helps you easily set up things like mailing lists, security, AJAX components and so on.</p> <p>Otherwise, if you want to set up a community site and don't want to code a single line you could always check out <a href="http://ning.com" rel="nofollow">ning.com</a>.</p> http://stackoverflow.com/questions/347948/what-real-life-examples-of-security-by-obscurity-have-you-seen-worked-with/399827#399827 2 Answer by stian for What real life examples of security by obscurity have you seen/worked with? stian 2008-12-30T09:02:00Z 2008-12-30T09:02:00Z <p>In a more "real life" example, I don't know if it's intentional or not, but I like the way none of the doorbells in my block have any names on them, and that their numbers seem to have no correlation to the apartement numbers whatsoever. Ie. ring on #25 for apartement 605, #13 for apartement 404 and so on. :)</p> http://stackoverflow.com/questions/347948/what-real-life-examples-of-security-by-obscurity-have-you-seen-worked-with/399820#399820 0 Answer by stian for What real life examples of security by obscurity have you seen/worked with? stian 2008-12-30T08:58:03Z 2008-12-30T08:58:03Z <p>Going to great lengths to hide software names and version numbers . </p> <p>Ie. changing Tomcat server name and version to some quotes and random numbers (like 666), changing the name and version numbers of regular javascript libraries like scriptaculous and prototype and so on.</p> <p>In a current project we're using Google Web toolkit (GWT) and this sneaky little thing compiles Java to javascript (which you have little to no control over) and includes the string "GWT" and version number. Totally unacceptable of course so we'll need to make a script that will run after GWT compile to remove all these references(!).</p> http://stackoverflow.com/questions/991243/svn-errorcode2-could-not-open-the-requested-svn-filesystem/1074780#1074780 Comment by stian on SVN errorcode=2 Could not open the requested SVN filesystem stian 2009-11-08T12:47:53Z 2009-11-08T12:47:53Z Care to explain how you solved it too? http://stackoverflow.com/questions/378205/web-xml-editor-with-xml-syntax-highlighting/668575#668575 Comment by stian on Web XML Editor - with XML syntax highlighting stian 2009-11-02T14:14:37Z 2009-11-02T14:14:37Z Thanks, exactly what I was looking for too! http://stackoverflow.com/questions/1566948/beginner-assigning-values-to-arrays-in-java/1566974#1566974 Comment by stian on Beginner: Assigning values to arrays in Java stian 2009-10-14T15:15:30Z 2009-10-14T15:15:30Z And you should really access the object properties through accessor methods like getGenes() instead of direct access (.genes). http://stackoverflow.com/questions/99866/biggest-gwt-pitfalls/108434#108434 Comment by stian on Biggest GWT Pitfalls? stian 2009-10-08T19:00:30Z 2009-10-08T19:00:30Z It's on freenode (irc.freenode.net). And it's actually ##gwt, but you'll be forwarded to it if you type #gwt. http://stackoverflow.com/questions/205444/testing-ip-based-geolocation/205466#205466 Comment by stian on Testing IP based geolocation stian 2009-09-16T19:20:57Z 2009-09-16T19:20:57Z To avoid the &quot;getting access to a computer in that IP range&quot; requirement you can setup an apache http proxy and forward requests from your external interface to your local interface, via a interface configured with the IP address you need to simulate. http://stackoverflow.com/questions/694513/how-to-install-tomcat-on-windows-xp/694526#694526 Comment by stian on How to install Tomcat on Windows XP? stian 2009-03-29T18:20:21Z 2009-03-29T18:20:21Z Good, you're welcome! :) http://stackoverflow.com/questions/401635/good-beginners-material-on-prolog/401768#401768 Comment by stian on Good beginners material on Prolog stian 2008-12-31T13:43:00Z 2008-12-31T13:43:00Z I second this suggestion. Very good and well-written introduction suitable for beginners. http://stackoverflow.com/questions/376561/openid-java/402950#402950 Comment by stian on OpenID Java stian 2008-12-31T13:18:03Z 2008-12-31T13:18:03Z Another issue I ran into was that I needed to setEnforceRpId(false) on the ConsumerManager to make it work when developing on localhost. http://stackoverflow.com/questions/400382/how-does-a-good-developer-keep-from-creating-code-with-a-high-bus-hit-factor/400397#400397 Comment by stian on How does a good developer keep from creating code with a high bus hit factor? stian 2008-12-30T15:11:01Z 2008-12-30T15:11:01Z I am of course aware of both 'concepts', and I'm not saying that you should do everything you can to obscure your code and make it difficult to replace you. http://stackoverflow.com/questions/65116/whats-your-favorite-harmless-computer-practical-joke/65537#65537 Comment by stian on What's Your Favorite Harmless Computer Practical Joke? stian 2008-12-30T14:48:19Z 2008-12-30T14:48:19Z Great tip! Gotta try that! ;) http://stackoverflow.com/questions/24596/what-web-application-framework-for-java-is-recommended/55818#55818 Comment by stian on What Web Application Framework for Java is Recommended? stian 2008-09-21T20:14:34Z 2008-09-21T20:14:34Z I wouldn't really consider GWT a web application framework really (it's more like a web toolkit, hence the name). GWT is great however, and goes well along with Spring for example. http://stackoverflow.com/questions/94268/what-answer-to-accept/94322#94322 Comment by stian on What answer to accept? stian 2008-09-18T16:47:43Z 2008-09-18T16:47:43Z I don't think you can accept your own answer? http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/94211#94211 Comment by stian on How do you maintain java webapps in different staging environments? stian 2008-09-18T16:44:18Z 2008-09-18T16:44:18Z Interesting. But you might have listeners or services that you don't want to run in a staging environment and they would run nevertheless with this approach, right? http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/94054#94054 Comment by stian on How do you maintain java webapps in different staging environments? stian 2008-09-18T16:41:20Z 2008-09-18T16:41:20Z I believe it's possible to accomplish this templating approach with maven's resource filtering? http://stackoverflow.com/questions/93944/how-do-you-maintain-java-webapps-in-different-staging-environments/94054#94054 Comment by stian on How do you maintain java webapps in different staging environments? stian 2008-09-18T16:35:55Z 2008-09-18T16:35:55Z I like the &quot;template&quot; approach, but it breaks when you're not using ant/maven and just running the app with the default from the IDE, or?