<?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>It's Only Software &#187; [Quick Tip] Debugger Shortcut Key Reference &#8211; It&#8217;s Only Software</title>
	<atom:link href="http://www.mularien.com/blog/category/eclipse/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mularien.com/blog</link>
	<description>Notes by Peter Mularien on Hibernate, Spring, CSS, Java, etc.</description>
	<lastBuildDate>Tue, 01 Mar 2011 11:26:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>[Quick Tip] Debugger Shortcut Key Reference</title>
		<link>http://www.mularien.com/blog/2010/05/16/quick-tip-debugger-shortcut-key-reference/</link>
		<comments>http://www.mularien.com/blog/2010/05/16/quick-tip-debugger-shortcut-key-reference/#comments</comments>
		<pubDate>Sun, 16 May 2010 13:39:12 +0000</pubDate>
		<dc:creator>pmularien</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[intellij]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://www.mularien.com/blog/?p=191</guid>
		<description><![CDATA[Debugger Shortcut Keys Tool Run Continue Step Over Step Into Step Out Suspend Debug Eclipse Ctrl+F11 F8 F6 F5 F7 N/A F11 Firebug &#160; &#160; &#160; F11 F10 &#160; &#160; Netbeans &#160; F5 F8 F7 Ctrl+F7 &#160; &#160; IntelliJ Shift-F10 F9 F8 F7 Shift+F8 &#160; Shift+F9 Visual Studio Ctrl+F5 F5 F10 F11 Shift+F11 Ctrl+Alt+Break F5 [...]]]></description>
		<wfw:commentRss>http://www.mularien.com/blog/2010/05/16/quick-tip-debugger-shortcut-key-reference/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FYI: Eclipse 3.4 (&#8220;Ganymede&#8221;) + Hibernate IDE = NoClassDefFoundError</title>
		<link>http://www.mularien.com/blog/2008/08/18/fyi-eclipse-34-ganymede-hibernate-ide-noclassdeffounderror/</link>
		<comments>http://www.mularien.com/blog/2008/08/18/fyi-eclipse-34-ganymede-hibernate-ide-noclassdeffounderror/#comments</comments>
		<pubDate>Mon, 18 Aug 2008 05:36:16 +0000</pubDate>
		<dc:creator>pmularien</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[hibernate]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.mularien.com/blog/2008/08/18/fyi-eclipse-34-ganymede-hibernate-ide-noclassdeffounderror/</guid>
		<description><![CDATA[A heads up in case anyone is thinking about using these together. Currently (Aug 18, 2008), the release version of Hibernate IDE (aka the Hibernate Eclipse plugin) does not work with Eclipse 3.4 (&#8220;Ganymede&#8221;) without one of 2 things: Unjarring, copying, and rejarring a file from Eclipse 3.3 Using the Hibernate IDE Nightly Update Site [...]]]></description>
		<wfw:commentRss>http://www.mularien.com/blog/2008/08/18/fyi-eclipse-34-ganymede-hibernate-ide-noclassdeffounderror/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Tomcat 6.0.14 + JSTL 1.2_07 RI = *Boom* NullPointerException</title>
		<link>http://www.mularien.com/blog/2008/02/05/tomcat-6014-jstl-12_07-ri-boom-nullpointerexception/</link>
		<comments>http://www.mularien.com/blog/2008/02/05/tomcat-6014-jstl-12_07-ri-boom-nullpointerexception/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 01:39:26 +0000</pubDate>
		<dc:creator>pmularien</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jsf]]></category>
		<category><![CDATA[jstl]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://www.mularien.com/blog/2008/02/05/tomcat-6014-jstl-12_07-ri-boom-nullpointerexception/</guid>
		<description><![CDATA[I guess I&#8217;ve had a busy / buggy weekend noodling around with stuff. I ran into a [known] bug in the latest JSTL/JSF 1.2 Reference Implementation on Tomcat 6.0.14. I was playing around with Spring MVC 2.5.1, and even the simplest JSP page gave me this: java.lang.NullPointerException com.sun.faces.application.WebappLifecycleListener.syncSessionScopedBeans&#40;WebappLifecycleListener.java:312&#41; com.sun.faces.application.WebappLifecycleListener.requestDestroyed&#40;WebappLifecycleListener.java:87&#41; com.sun.faces.config.ConfigureListener.requestDestroyed&#40;ConfigureListener.java:240&#41; &#91;snip&#93; This is interesting, because [...]]]></description>
		<wfw:commentRss>http://www.mularien.com/blog/2008/02/05/tomcat-6014-jstl-12_07-ri-boom-nullpointerexception/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FYI: Spring IDE 2.0.2 is broken on Eclipse 3.3/Java 6</title>
		<link>http://www.mularien.com/blog/2008/02/03/fyi-spring-ide-202-is-broken-on-eclipse-33java-6/</link>
		<comments>http://www.mularien.com/blog/2008/02/03/fyi-spring-ide-202-is-broken-on-eclipse-33java-6/#comments</comments>
		<pubDate>Sun, 03 Feb 2008 14:09:39 +0000</pubDate>
		<dc:creator>pmularien</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[spring]]></category>
		<category><![CDATA[springwebflow]]></category>

		<guid isPermaLink="false">http://www.mularien.com/blog/2008/02/03/fyi-spring-ide-202-is-broken-on-eclipse-33java-6/</guid>
		<description><![CDATA[I was banging my head against the wall due to this problem. Apparently there is an issue with Spring IDE 2.0.2 running on a Java 6 platform &#8211; simply put, it doesn&#8217;t work. There&#8217;s a JIRA filed on this, along with some discussion [#1], [#2]in the Spring forums. I reverted to manually installing Spring IDE [...]]]></description>
		<wfw:commentRss>http://www.mularien.com/blog/2008/02/03/fyi-spring-ide-202-is-broken-on-eclipse-33java-6/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Problems Installing Glassfish Plugin in Eclipse 3.3?</title>
		<link>http://www.mularien.com/blog/2008/01/24/problems-installing-glassfish-plugin-in-eclipse-33/</link>
		<comments>http://www.mularien.com/blog/2008/01/24/problems-installing-glassfish-plugin-in-eclipse-33/#comments</comments>
		<pubDate>Fri, 25 Jan 2008 01:46:39 +0000</pubDate>
		<dc:creator>pmularien</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[glassfish]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.mularien.com/blog/2008/01/24/problems-installing-glassfish-plugin-in-eclipse-33/</guid>
		<description><![CDATA[File this one under &#8220;silly me&#8221;. I was having a heck of a time getting Eclipse 3.3 to find the Glassfish plugin automatically (or even manually) as described in the install guide. I am sometimes behind a corporate proxy server, but I had the proxy set up in Eclipse when I was trying this, and [...]]]></description>
		<wfw:commentRss>http://www.mularien.com/blog/2008/01/24/problems-installing-glassfish-plugin-in-eclipse-33/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Quick Tip: Using &#8220;Ant Builder&#8221; to customize Eclipse builds using ant scripts</title>
		<link>http://www.mularien.com/blog/2008/01/03/quick-tip-using-ant-builder-to-customize-eclipse-builds-using-ant-scripts/</link>
		<comments>http://www.mularien.com/blog/2008/01/03/quick-tip-using-ant-builder-to-customize-eclipse-builds-using-ant-scripts/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 04:09:00 +0000</pubDate>
		<dc:creator>pmularien</dc:creator>
				<category><![CDATA[ant]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.mularien.com/blog/2008/01/03/quick-tip-using-ant-builder-to-customize-eclipse-builds-using-ant-scripts/</guid>
		<description><![CDATA[Recently, while working on a customer&#8217;s older EJB 2-based system, I was going a bit nutty having to run a 1-2 minute ant build to execute various code generation tasks (anyone have fond memories of ejbgen like I do? ) I was able to get Eclipse set up to be happy with the relatively complex [...]]]></description>
		<wfw:commentRss>http://www.mularien.com/blog/2008/01/03/quick-tip-using-ant-builder-to-customize-eclipse-builds-using-ant-scripts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick Tip: Convert an Eclipse &#8220;General&#8221; Project to a Java Project</title>
		<link>http://www.mularien.com/blog/2007/12/05/quick-tip-convert-an-eclipse-general-project-to-a-java-project/</link>
		<comments>http://www.mularien.com/blog/2007/12/05/quick-tip-convert-an-eclipse-general-project-to-a-java-project/#comments</comments>
		<pubDate>Wed, 05 Dec 2007 11:57:40 +0000</pubDate>
		<dc:creator>pmularien</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.mularien.com/blog/2007/12/05/quick-tip-convert-an-eclipse-general-project-to-a-java-project/</guid>
		<description><![CDATA[I don&#8217;t know how many times I&#8217;ve accidentally created a General project instead of a Java project, and it always bugged me that you couldn&#8217;t convert from General to Java without starting over. The quick and easy hack is explained well here. Open the relevant .project file and add the following (note that you don&#8217;t [...]]]></description>
		<wfw:commentRss>http://www.mularien.com/blog/2007/12/05/quick-tip-convert-an-eclipse-general-project-to-a-java-project/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Quick Tip: When Eclipse just won&#8217;t clean up the Tomcat Working Directory</title>
		<link>http://www.mularien.com/blog/2007/11/18/quick-tip-when-eclipse-just-wont-clean-up-the-tomcat-working-directory/</link>
		<comments>http://www.mularien.com/blog/2007/11/18/quick-tip-when-eclipse-just-wont-clean-up-the-tomcat-working-directory/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 01:41:40 +0000</pubDate>
		<dc:creator>pmularien</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://www.mularien.com/blog/2007/11/18/quick-tip-when-eclipse-just-wont-clean-up-the-tomcat-working-directory/</guid>
		<description><![CDATA[I use Eclipse 3.3.x and WTP 2.x for most of my web development. Recently, I&#8217;ve been using an Eclipse-managed Tomcat 6 server for running and deploying web applications. I&#8217;ve run into the problem several times when &#8220;Clean Tomcat Work Directory&#8230;&#8221; just doesn&#8217;t work. Fortunately, you can manually find the deployment directory and blow away your [...]]]></description>
		<wfw:commentRss>http://www.mularien.com/blog/2007/11/18/quick-tip-when-eclipse-just-wont-clean-up-the-tomcat-working-directory/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Eclipse 3.3 Quick Fix / Quick Assist Cheat Sheets</title>
		<link>http://www.mularien.com/blog/2007/10/26/eclipse-33-quick-fix-quick-assist-cheat-sheets/</link>
		<comments>http://www.mularien.com/blog/2007/10/26/eclipse-33-quick-fix-quick-assist-cheat-sheets/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 19:37:20 +0000</pubDate>
		<dc:creator>pmularien</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://www.mularien.com/blog/2007/10/26/eclipse-33-quick-fix-quick-assist-cheat-sheets/</guid>
		<description><![CDATA[I used to be an IntelliJ IDEA user, but have migrated over to Eclipse. One of the things that I initially missed in Eclipse was the availability of the &#8220;light bulb&#8221; tips to do quick refactors and code optimizations. I have recently discovered that Eclipse has many of the same fixes, but they aren&#8217;t advertised [...]]]></description>
		<wfw:commentRss>http://www.mularien.com/blog/2007/10/26/eclipse-33-quick-fix-quick-assist-cheat-sheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.817 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-04 15:15:06 -->

