<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 22:25:47 +0000</lastBuildDate>
    <item>
      <title>(Java) spring-runbean standalone app setup: pom.xml, beans.xml, assembly.xml - thebugslayer</title>
      <link>https://snipplr.com/view/3810/springrunbean-standalone-app-setup-pomxml-beansxml-assemblyxml</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 01 Oct 2007 08:50:04 UTC</pubDate>
      <guid>https://snipplr.com/view/3810/springrunbean-standalone-app-setup-pomxml-beansxml-assemblyxml</guid>
    </item>
    <item>
      <title>(Java) springmvc setup: web.xml, webapp-servlet.xml, and webapp-servlet-main.xml, pom.xml, logback.xml - thebugslayer</title>
      <link>https://snipplr.com/view/3809/springmvc-setup-webxml-webappservletxml-and-webappservletmainxml-pomxml-logbackxml</link>
      <description>&lt;p&gt;There are multiple file snippets here. Careful when cut/paste&#13;
&#13;
mvn archetype:create -DarchetypeArtifactId=maven-archetype-webapp -DgroupId=deng -DartifactId=myspringmvc&#13;
touch WEB-INF/conf.properties&lt;/p&gt;</description>
      <pubDate>Mon, 01 Oct 2007 08:26:34 UTC</pubDate>
      <guid>https://snipplr.com/view/3809/springmvc-setup-webxml-webappservletxml-and-webappservletmainxml-pomxml-logbackxml</guid>
    </item>
    <item>
      <title>(Java) Increase eclipse JVM max memories and maxpermsize paramters - thebugslayer</title>
      <link>https://snipplr.com/view/3802/increase-eclipse-jvm-max-memories-and-maxpermsize-paramters</link>
      <description>&lt;p&gt;/opt/eclipse/eclipse.ini&lt;/p&gt;</description>
      <pubDate>Sat, 29 Sep 2007 05:49:25 UTC</pubDate>
      <guid>https://snipplr.com/view/3802/increase-eclipse-jvm-max-memories-and-maxpermsize-paramters</guid>
    </item>
    <item>
      <title>(Java) Minimal web.xml web-app descriptor version 2.4 and 2.3 - thebugslayer</title>
      <link>https://snipplr.com/view/3800/minimal-webxml-webapp-descriptor-version-24-and-23</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 28 Sep 2007 20:07:20 UTC</pubDate>
      <guid>https://snipplr.com/view/3800/minimal-webxml-webapp-descriptor-version-24-and-23</guid>
    </item>
    <item>
      <title>(Java) Using a internal maven2 repository settings.xml - thebugslayer</title>
      <link>https://snipplr.com/view/3787/using-a-internal-maven2-repository-settingsxml</link>
      <description>&lt;p&gt;Setup artifactory application in a internal network that act as proxy. Then in your $HOME/.m2 directory, add the following file.&#13;
&#13;
For deploying to repos, add this to pom.xml&#13;
...&#13;
        &#13;
		&#13;
			cnx.release.repo&#13;
			Connextions Repository for Maven2&#13;
			http://firebird:8081/artifactory/cnx-releases&#13;
		&#13;
		&#13;
			cnx.snapshots.repo&#13;
			Connextions Repository for Maven2&#13;
			http://firebird:8081/artifactory/cnx-snapshots&#13;
		&#13;
	&#13;
...&#13;
run: maven deploy -DrepositoryId=cnx.snapshots.repo&lt;/p&gt;</description>
      <pubDate>Wed, 26 Sep 2007 07:07:07 UTC</pubDate>
      <guid>https://snipplr.com/view/3787/using-a-internal-maven2-repository-settingsxml</guid>
    </item>
    <item>
      <title>(Java) logback.xml configuration with STDOUT and Daily Rolling FILE appender - thebugslayer</title>
      <link>https://snipplr.com/view/3779/logbackxml-configuration-with-stdout-and-daily-rolling-file-appender</link>
      <description>&lt;p&gt;ch.qos.logback&#13;
      logback-classic&#13;
      0.9.8&lt;/p&gt;</description>
      <pubDate>Mon, 24 Sep 2007 20:47:20 UTC</pubDate>
      <guid>https://snipplr.com/view/3779/logbackxml-configuration-with-stdout-and-daily-rolling-file-appender</guid>
    </item>
    <item>
      <title>(Java) Minimal web.xml web-app descriptor version 2.5 - thebugslayer</title>
      <link>https://snipplr.com/view/3775/minimal-webxml-webapp-descriptor-version-25</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 24 Sep 2007 15:08:45 UTC</pubDate>
      <guid>https://snipplr.com/view/3775/minimal-webxml-webapp-descriptor-version-25</guid>
    </item>
    <item>
      <title>(Java) Maven2 pom.xml for a webapp that works in Eclipse Europa+m2eclipse - thebugslayer</title>
      <link>https://snipplr.com/view/3774/maven2-pomxml-for-a-webapp-that-works-in-eclipse-europam2eclipse</link>
      <description>&lt;p&gt;1. mvn archetype:create -DgroupId=deng -DartifactId=mywebapp -DarchetypeArtifactId=maven-archetype-webapp&#13;
2. Replace web.xml with http://snipplr.com/view/3800/minimal-webxml-webapp-descriptor-version-24&#13;
3. Replace pom.xml in this snipplet.&#13;
4. mvn eclipse:m2eclipse -Dwtpversion=1.5&#13;
5. Import project into Eclipse&#13;
6. In project properties &gt; Java Build Path. Add a "Server Runtime" Library ( with Tomcat6)&#13;
7. In project properties &gt; J2EE Module Dependencies. Check Maven2Dependencies&#13;
8. Project &gt; Clean&#13;
&#13;
If you re-importing a project back into Eclipse, be sure to:&#13;
1. Delete your existing project in eclipse&#13;
2. mvn clean eclipse:clean&#13;
3. Repeat steps 4-8 above.&lt;/p&gt;</description>
      <pubDate>Mon, 24 Sep 2007 15:07:34 UTC</pubDate>
      <guid>https://snipplr.com/view/3774/maven2-pomxml-for-a-webapp-that-works-in-eclipse-europam2eclipse</guid>
    </item>
    <item>
      <title>(Java) persistence.xml for Hibernate vendor - thebugslayer</title>
      <link>https://snipplr.com/view/3770/persistencexml-for-hibernate-vendor</link>
      <description>&lt;p&gt;this goes under src/main/resource/META-INF/persistence.xml&lt;/p&gt;</description>
      <pubDate>Sun, 23 Sep 2007 20:47:27 UTC</pubDate>
      <guid>https://snipplr.com/view/3770/persistencexml-for-hibernate-vendor</guid>
    </item>
    <item>
      <title>(Java) JPA Annotated/Persistent Class - thebugslayer</title>
      <link>https://snipplr.com/view/3769/jpa-annotatedpersistent-class</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 23 Sep 2007 20:37:53 UTC</pubDate>
      <guid>https://snipplr.com/view/3769/jpa-annotatedpersistent-class</guid>
    </item>
    <item>
      <title>(Java) Maven2 pom.xml for HibernateJPA+Mysql+HibernateTools - thebugslayer</title>
      <link>https://snipplr.com/view/3767/maven2-pomxml-for-hibernatejpamysqlhibernatetools</link>
      <description>&lt;p&gt;Make sure you compile before rnning hibernate3:hbm2ddl!&#13;
&#13;
mvn compile hibernate3:hbm2ddl&lt;/p&gt;</description>
      <pubDate>Sun, 23 Sep 2007 20:11:22 UTC</pubDate>
      <guid>https://snipplr.com/view/3767/maven2-pomxml-for-hibernatejpamysqlhibernatetools</guid>
    </item>
    <item>
      <title>(Java) Basic Manev2 pom.xml - thebugslayer</title>
      <link>https://snipplr.com/view/3766/basic-manev2-pomxml</link>
      <description>&lt;p&gt;mvn archetype:create -DgroupId=deng -DartifactId=mysimpleapp&#13;
mvn eclipse:m2eclipse&lt;/p&gt;</description>
      <pubDate>Sun, 23 Sep 2007 17:44:38 UTC</pubDate>
      <guid>https://snipplr.com/view/3766/basic-manev2-pomxml</guid>
    </item>
    <item>
      <title>(Java) Sorting map keys by comparing it's values - thebugslayer</title>
      <link>https://snipplr.com/view/2789/sorting-map-keys-by-comparing-its-values</link>
      <description>&lt;p&gt;This demonstrate the expressiveness of Groovy vs Java.&lt;/p&gt;</description>
      <pubDate>Sun, 03 Jun 2007 12:33:57 UTC</pubDate>
      <guid>https://snipplr.com/view/2789/sorting-map-keys-by-comparing-its-values</guid>
    </item>
    <item>
      <title>(Java) Java Ignore Case Pattern Construct - thebugslayer</title>
      <link>https://snipplr.com/view/2787/java-ignore-case-pattern-construct</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 02 Jun 2007 15:45:21 UTC</pubDate>
      <guid>https://snipplr.com/view/2787/java-ignore-case-pattern-construct</guid>
    </item>
  </channel>
</rss>
