I want to run the servlet in elipse. For this I have created a dynamic web project and I have deployed my servlet.java file under WEB-INF folder. I have also added servlet.jar file. How can I run the file as a java application?
...
I can't find any configuration for the recent tendency of the Eclipse checkstyle plugin (I'm running 5.1.0) to complain about style issues in log4j.property files. It's not in my checkstyle.xml, it doesn't happen when I run checkstyle outside of eclipse, and I don't see an eclipse preference. Is this controllable?
...
Is there any good overview of the JFace label provider framework? The JFace snippets doesn't really explain the relationship between the different generations (pre-3.2, 3.3, 3.4, etc.)
...
Ok, I have a(n) RCP application (that I didn't write), and an application I've developed using just SWT. What I want to do is basically import and launch the main method of the SWT application with arguments, such that it runs in another window, like it's another process. The argument I want to pass is a complex data structure that I d...
Are there any low-hanging fruit regarding some more efficient way to run and test Eclipse-plugins (within the PDE)? Besides slimming down the Eclipse-configuration, which has already been done.
Thanks!
...
Is there anything that resembles Emacs' artist mode available for Eclipse?
...
I'm trying to use Google App Engine with Eclipse but it's not working.
I downloaded PyDev, and made a Hello World Python app, so that's working fine.
Then I created a new project, with the "Google App Engine" template. I was following these instructions. I used the "Hello Webapp World" as a template, and didn't change any of the Python...
Hi there. I downloaded the svgsalamander.jar, with all its pretty classes and stuff. But i can not sucesfully load them into my existing Java project, using Eclipse, so, how can i do it?
I am truly sorry about asking this, but i tried with google, stack and found nothing useful.
Thanks!
...
I have created a domain model using spring-roo, which makes heavy use of Spring and AspectJ. My model is deploying nicely as a OSGi bundle, and from the Spring STS (eclipse-based) IDE, I can call the entity classes, etc.
I need to access these domain classes from a Eclipse RCP/RAP application, and this project I keep in the normal Eclip...
Hi All,
I have developed an eclipse plugin which references an external jar present in a external installation directory.
So I have added an entry to my bundle classpath as below:
Bundle-ClassPath: external:C:\mylib.jar
My class loads properly - and the plugin is able to detect a class MyClass present in this external lib.
However, t...
Hi,
I have created a dynamic web project within Eclipse. I created a properties file inside the src directory:
<project-root>/src/props.properties
I'm starting Tomcat via Eclipse in debug mode. Now I want to read the properties file from one of my POJOs, but I get a FileNotFoundException. The current path seems to be the Eclipse path...
I have a web application running in a jboss application server (But it is not jboss specific so we could also assume it is a tomcat or any other server). Now I have the problem that one thread seems to be in dead-lock situation. It uses 100% CPU all the time. I have started the server with enabled debug port and I can connect Eclipse to ...
I mean is there any difference between the maven you download and manually install/run from the one eclipse has embedded as an eclipse plugin? The reason why I ask is that, my project builds successfully in eclipse, but I get this annoying error when building from console mvn install, here is the error
Reason: Cannot find parent:
n...
jQueryWTP is very out of date (jQuery 1.2.6 and Eclipse 3.3), and I don't want to use Aptana just to get code completion (I'm very happy with PDT otherwise). Is there any current solution for this?
...
I know how to remote debug a java application on a machine where it already exists, but does anyone know of a solution that can launch from a local workspace (e.g. eclipse), transfer any code in the local classpath to a remote or virtual machine, execute it there and connect a remote debugger, all in one step? I expect some kind of serve...
Hello !
Today I found LiquiBase project and I think it is very interesting. I would like to use it but I am looking for best way to do it.
We are working with PHP projects and SVN (a few developers) with one MySQL server.
I am wondering how to work with LiquiBase:
should we store its changeLog in SVN too ?
how to edit this changeLog...
Hello.
I'm sure this is a very obvious question, but I'm having little luck finding an answer to it.
Essentially, after compiling utility jars w/ ANT, I'm having the problem that all the parameters are showing up in Eclipse's tool-tip as arg0, arg1 etc.
For example:
public void myMethod(String name, String address)
After being comp...
From within an Eclipse plugin, I'd like to run an Ant build script. I also want to display the Ant output to the user, by displaying it in an Eclipse console. Finally, I also want to wait for the Ant build to be finished, and capture the result: did the build succeed or fail?
I found three ways to run an Ant script from eclipse:
Ins...
I followed these instructions here:
http://logback.qos.ch/consolePlugin.html
I have the correct and found logback.xml, it is set up correctly, and the port is listening. Nothing shows up with
logger.error("Test");
It logs to sysout fine when I remove logback.xml, which shows to me that the logback is working fine. I installed the pl...
I'm having problems when trying to compile the following code:
I first tried compiling with this code:
class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!"); // Display the string.
}
}
it works as it should. Now, if I try to replace the class name for any other name, it wo...