eclipse

Configuring WPS Workbench to run an Autoexec on startup

Does anyone have any experience configuring the WPS engine to run, essentially an autoexec.sas on startup? I cannot find any documentation on how to implement this feature for WPS. I see that they have the option available to set, but I cannot find where to put the file or what to name it. http://www.teamwpc.co.uk/docs/WPS-Core-Quick-...

Eclipse is not starting on Windows 7

Our company is making the move to Windows 7. After receiving the upgrade, Eclipse will no longer start on anyones machine. I first tried with 3.4 and I also tried the latest and greatest. I have the latest JDK installed as well, which is 6 update 18. This is a 32 bit machine. Any ideas? Here is the log file that Eclipse is generating: !...

eclipse web project dependency

Hi everybody! i have one eclipse project(A) with a small spring application and another one with a web application using GWT (B). project A exports its ressources via build path / order and export. project B imports the ressources via build path / projects. eclipse adds the files to the build path and to the system class path of the r...

downloaded STS, how to import/open petcare?

The spring website says: The petcare sample application referenced in this presentation can also be accessed in the Spring Samples SVN repository. This sample app is directly importable & runnable with SpringSource Tool Suite I downloaded the spring tool suite, can't find any import mechanism? ...

Open a project in Eclipse

I'm completely new to Eclipse/Java/Android programming, so this might sound like a dumb question, but I can't open the project I was working on last week... it's the "HelloWorld" project. I'm very familiar with Visual Studio so I've been looking for something like a project file/solution or a way to open a directory in Exlipse, but I'm ...

Eclipse the import cannot be resolved after Java update

I have class that uses hibernate, I have included all required jars to classpath and class worked before Java updated itself. But now eclipse shows that it cannot resolve some hibernate imports. What could be solution to this? import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; ...

resource not found error while deploying jsp page on JBoss using Struts 2.0.6 on Eclipse ide

i am developing a java project using struts 2.0.6 on eclipse ide. i hav set all my classpaths and also added the struts jar files in my libraries. while deploying the application the server starts and the war file is also created . However when running JBoss web interface through http://localhost:8080/modified/login.jsp i get an error t...

How to transfer Netbeans Project into Eclipse?

I have been using Netbeans for my java desktop application since few months. Now in the middle of the project, I want to switch over to Eclipse as the Netbeans once corrupted my GUI and I had to re-create several parts of the GUI and now it is displaying a compiler error as code too large private void initComponents() { 1 error "code...

Eclipse (on Ubuntu) do not have jsp, html and other web-files template

I installed Eclipse using Synaptic Package Manager (Ubuntu 9.10). However, my Eclipse does not have any HTML template (in New dialog) or JSP template. How can I fix it so that I will have some HTML and JSP templates overthere? ...

Where should I put an external JAR file in my Eclipse project?

I've created a new project in Eclipse and I want to include the ANTLR jar file. Where do you typically place your jar files before referencing them in your project? Do you create a "Source Directory" in eclipse, or a normal "Directory"? Do you then reference them from there? I want to be able to easily transport this project around a...

Java stack overflow error - how to increase the stack size in Eclipse?

I am running a program that I've written in Java in Eclipse. The program has a very deep level of recursion for very large inputs. For smaller inputs the program runs fine however when large inputs are given, I get the following error: Exception in thread "main" java.lang.StackOverflowError Can this be solved by increasing the Java st...

Why are modifiers allowed for a package when they don't seem to do anything?

I can declare the following package with modifiers but it doesn't seem to have any effect on anything: private public protected static final package com.stackoverflow.mangodrunk // ... class Whatever { // ... } So my question is, does adding a modifier before a package decleration do anything and why would it be allowed by th...

(Eclipse RCP) How to redirect the output to Console View ?

I have two viewers, one has a Text for user's input and the other viewer is the Eclipse's built_in Console View. And I will run an java program according user's input, and want to display the log information in the ConsoleView. Does anybody know How can I redirect the output to Console View ? Thanks ...

In Eclipse, how do I see the input to Assert.assertEquals when it fails?

Hi, I'm not much of an Eclipse guru, so please forgive my clumsiness. In Eclipse, when I call Assert.assertEquals(obj1,obj2) and that fails, how do I get the IDE to show me obj1 and obj2? I'm using JExample, but I guess that shouldn't make a difference. Edit: Here's what I see: . ...

Grails Warnings/Errors during run-app

I'm currently seeing the warnings below when trying to run my Google App Engine/Grails test app in Eclipse. Warning, target causing name overwriting of name startLogging Warning: C:\Users\Some Person.grails\1.2.0\projects\test-grails\plugins\app-engine-0.8.8\grails-app\conf\spring not found. Warning: C:\Users\Some Person.grails\1.2.0\p...

Grails - Class "org.grails.tomcat.TomcatLoader" was not found in the CLASSPATH

grails run-app from within Eclipse is currently giving me the exception below for my Google App Engine/Grails test application: Enhancing JDO classes [enhance] DataNucleus Enhancer (version 1.1.4) : Enhancement of classes [enhance] Jan 24, 2010 5:11:42 AM org.datanucleus.metadata.MetaDataManager loadClasses [enhance] SEVERE: Class...

Eclipse PHP IDE - custom auto complete tags

New to Eclipse IDE and was wondering is there is a way of adding an auto complete/change so that if I type: mres it will translate it to mysql_real_escape_string() I know of the normal PHP code completion, but couldn't see anything about making custom shortcuts. Thanks, Niggles ...

Eclipse + DN + C3P0

I'm trying to put C3P0 up & running. http://www.datanucleus.org/products/accessplatform/rdbms/c3p0.html I have These as Plugins (app runs fine): datanucleus-connectionpool-1.0.2.jar datanucleus-core-1.1.0.m3.jar datanucleus-enhancer-1.1.0.m1.jar datanucleus-rdbms-1.1.0.m3.jar I added (to the classpath): c3p0-0.9.1.2.jar And the par...

DN 2.0.0 & Eclipse 3.4.2

Tried to install DN 2.0.0 from scratch on Eclipse RCP 3.4.2 development env. org.datanucleus.ide.eclipse_2.0.1 was installed via eclipse updates datanucleus-core-2.0.0-release.jar datanucleus-enhancer-2.0.0-release.jar datanucleus-rdbms-2.0.0-release.jar were added to the CLASSPATH. HERE is the project MAN...

Writing eclipse templates

I am writing django templates in Eclipse->prefrences->templates, to autocomplete DJango templates. I wrote this {% block ${cursor} %} {% endblock %} Now, when I request and do autocompletion, after typing {% the autocompletion is {% {% block %} {% endblock %} While I would like {% block %} {% endblock %} With cursor after ...