[b]Eclipse'[/b]s lightweight vs [b]JBuilder[/b]'s power

There are a lot of people that say Eclipse is better than JBuilder.
I know its free, but if we forget about this, are there weak sides of JBuilder that Eclipse can be good seen at?
I've been used JBuilder as IDE all the time i work. Last week tried Eclipse. The two things i liked about it is its memory-lightweight and source-code tooltips.
That's all.
What's your opinion?? Especially Eclipse users - what is the main reason you use it?? (except of price, of course :))
Interesting..
Boris.

There are a lot of people that say Eclipse is better
than JBuilder.Though I used JBuilder from the days when it released its first version, 1.0 till about an year back, But I would say Eclipse/WSAD is definitely better.
>
I know its free, but if we forget about this, are
there weak sides of JBuilder that Eclipse can be good
seen at?Well you can get WSAD which is not free.
>
I've been used JBuilder as IDE all the time i work.
Last week tried Eclipse. The two things i liked about
it is its memory-lightweight and source-code
tooltips. Well its definitely not lightweight.
That's all.
What's your opinion?? Especially Eclipse users - what
is the main reason you use it?? (except of price, of
course :))
Eclipse is better is debugging and adds a lot of feature s like scrap book and stuff which are not available in JBuilder. This makes eclipse more flexible for debugging purposes while shortenning the development time as well. Another advantage of Eclipse are the readily available plugins which you could put in so easily. Unfortunately thats not the case with JBuilder.
WSAD providing me a default interface for websphere makes it an IDE of choice for all those applications which need to be deployed on websphere later on.

Similar Messages

  • Flex plugins for NetBeans and JBuilder

    There seems to be plugins only for Eclipse. How about
    NetBeans and JBuilder. Eclipse seems to have some serious memory
    leak problems.

    well as far as I know JBuilder is based on eclipse platform
    so theoritically flex plugin should work.,

  • Best IDE & Platform Configuration? What do you think?

    What do you think the best IDE is out there? I want to compile and create applications as well as servlets and beans, but my focus would be on the beans, servlets, jsp, etc, the web stuff. Once I have the IDE for that, what is the best configuration for developing under that environment. For example I would like to use the the JavaMail API as well, and that is available for the J2EE. So I can install both the J2SE and J2EE SDK's right? Should I accept their default installation directories? Is it possible to move files, the .jar files for example over the to a single directory for centralization? Help, trying to get an understaning how to create a nice development environment. Simple, efficient, etc.
    Thanks so much!!
    Terry

    I personally think Eclipse is outstanding. I used JBuilder for a while, but it insisted on formatting code the JBuilder way. Eclipse also has refactoring, which is a major bonus. Moving classes is now a few clicks instead of performing a search-replace on all your files. There are UML and dozens of other types of plug-in.
    As far as setting-up your environment, I normally duplicate a web application's deployment. So, the external JAR's I need are in WEB-INF/lib. The IDE should take care of classpath issues, if you perform the initial project set-up properly. I would also learn Jakarta's Ant. It makes deployment a lot easier, at the expense of some up-front development.
    - Saish
    "My karma ran over your dogma." - Anon

  • Creating Java Libraries (jar)

    Can anybody out there help me with java class archiving? I previously created classes and I want it to be archived in a one jar file, I was able to do the jarring of these files, the problem is I cannot access the library inside this archive from another Java program.
    Heres What I Did.
    ========================
    File1: One.java
    package abc.util;
    public class One{
    ==========================
    File2: Two.java
    package abc.util;
    public class Two{
    ============================
    I compiled these files, and it created abc/util/One.class and abc/util/Two.class
    I Made a jar file by invoking
    jar cvf MyJarFile.jar abc
    ================================================
    I used this archive into another java application
    import abc.util.*;
    public class Test{
    public Test(){
    One o = new One(); <---- {I got an error here,  "Bad Class" JBuilder Error}
    ================================================
    End of the Story :-)
    ================================================
    Ur help is very much appreciated, thanks!

    Here's an example that may help. If I have a jar located at
    C:/myworkspace/deploy/utils.jar
    Then in order for a java program to import classes from that jar, I need that to be in my CLASSPATH variable.
    Such as
    CLASSPATH=.;C:/myworkspace/deploy/utils.jar
    That's for running the program with javac. For compiling in JBuilder, I use Eclipse, but I'm sure in JBuilder there's something like "libraries" where you list the jar files for JBuilder to search through when you import.
    Message was edited by:
    Michael_Ebbert

  • Tomcat 5 can�t find javax.servlet.http.HttpServlet

    Hi.
    I don�t know if this is a simple question or not, but i didn�t find anything solving this problem and
    i�m new to tomcat......
    I�m trying to deploy my web application in my system. (Windows XP , j2sdk1.4.2_02, jakarta Tomcat 5, jakarta struts 1.1 and jakarta taglibs 1.1).No problems while compiling the .java classes and checked all the .jar files that my application needs to work (or that is what I think). I expand my .war file at /webapps on tomcat directory and startup Tomcat. Tomcat starts up but while starting I get the following errors...
    17-feb-2004 17:58:50 org.apache.coyote.http11.Http11Protocol init
    INFO: Initializing Coyote HTTP/1.1 on port 8080
    17-feb-2004 17:58:51 org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 4948 ms
    17-feb-2004 17:58:51 org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    17-feb-2004 17:58:51 org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/5.0.18
    17-feb-2004 17:58:51 org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    17-feb-2004 17:58:51 org.apache.catalina.core.StandardHost getDeployer
    INFO: Create Host deployer for direct deployment ( non-jmx )
    17-feb-2004 17:58:51 org.apache.catalina.core.StandardHostDeployer install
    INFO: Processing Context configuration file URL file:C:\softProyecto\Tomcat5\conf\Catalina\localhost\admin.xml
    17-feb-2004 17:58:55 org.apache.commons.digester.Digester endElement
    GRAVE: End event threw exception
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.commons.beanutils.MethodUtils.invokeMethod(MethodUtils.java:252)
         at org.apache.commons.digester.SetNextRule.end(SetNextRule.java:256)
         at org.apache.commons.digester.Rule.end(Rule.java:276)
         at org.apache.commons.digester.Digester.endElement(Digester.java:1058)
         at org.apache.catalina.util.CatalinaDigester.endElement(CatalinaDigester.java:123)
         at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1567)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:520)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:906)
         at org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:527)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:472)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1008)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:394)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:166)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:832)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1125)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:518)
         at org.apache.catalina.core.StandardService.start(StandardService.java:519)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2345)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:598)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:297)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:398)
    Caused by: java.lang.NoClassDefFoundError: javax/servlet/http/HttpServlet
         at java.lang.ClassLoader.defineClass0(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
    it seems like C:\softProyecto\Tomcat5\conf\Catalina\localhost\admin.xml (C:\softproyecto\tomcat5 = tomcat�s home directory) needs javax.servlet.http.HttpServlet. And that comes from a Tomcat .jar file, i think.
    After more and more messages..... here it comes my application (MapasRuido)...which needs javax.servlet.http.HttpServlet and compiled ok at compiling time!
    INFO: Installing web application at context path /MapasRuido from URL file:C:\softProyecto\Tomcat5\webapps\MapasRuido
    17-feb-2004 18:02:48 org.apache.catalina.startup.HostConfig deployDirectories
    GRAVE: Error durante el despliegue del directorio MapasRuido de la aplicaci�n web
    java.lang.NoClassDefFoundError: javax/servlet/http/HttpServlet
         at java.lang.ClassLoader.defineClass0(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:251)
         at java.net.URLClassLoader.access$100(URLClassLoader.java:55)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:194)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:282)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1296)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1230)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         at java.lang.ClassLoader.defineClass0(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
         at org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLoader.java:1677)
         at org.apache.catalina.loader.WebappClassLoader.findClass(WebappClassLoader.java:900)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1350)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1230)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         at java.lang.ClassLoader.defineClass0(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:537)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:123)
         at org.apache.catalina.loader.WebappClassLoader.findClassInternal(WebappClassLoader.java:1677)
         at org.apache.catalina.loader.WebappClassLoader.findClass(WebappClassLoader.java:900)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1350)
         at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1230)
         at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:979)
         at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:887)
         at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3960)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4283)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:866)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:850)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:638)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:320)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:875)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:727)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:477)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1008)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:394)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:166)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:832)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1125)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:518)
         at org.apache.catalina.core.StandardService.start(StandardService.java:519)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2345)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:598)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:297)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:398)
    17-feb-2004 18:02:48 org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path from URL file:C:\softProyecto\Tomcat5\webapps\ROOT
    17-feb-2004 18:02:48 org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path /servlets-examples from URL file:C:\softProyecto\Tomcat5\webapps\servlets-examples
    17-feb-2004 18:02:48 org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path /tomcat-docs from URL file:C:\softProyecto\Tomcat5\webapps\tomcat-docs
    17-feb-2004 18:02:49 org.apache.coyote.http11.Http11Protocol start
    INFO: Starting Coyote HTTP/1.1 on port 8080
    tomcat�s web applications servlets-examples and tomcat-docs work fine, but my application doesn�t. Is there any relation between those errors? any idea about what happens?
    Thank you in advance.

    "...The CLASSPATH is ignored by Tomcat, of course. AND javac. AND java. AND Eclipse. AND NetBeans. AND JBuilder. And just about everything else in the Java universe..."
    What I mean by this, of course, is that each of these requires you to set the CLASSPATH in the way they expect. None of them even looks for a system environment variable named CLASSPATH. You can waste a lot of time thinking that your CLASSPATH is "all set", but it's not.
    Tomcat assumes the following for your Web app's CLASSPATH:
    (0) The JDK rt.jar, of course,
    (1) All the JARs in TOMCAT_HOME/common/lib,
    (2) All the JARs in your WEB-INF/lib,
    (3) All the .class files in your WEB-INF/classes
    That's it. (Maybe one or two others, but those are the important ones.)
    Eclipse and NetBeans have their own way to set CLASSPATH for each project. You'll have to learn how for those IDEs.
    The CLASSPATH is still vitally important. The system environment variable just isn't part of it. - MOD

  • Define an Area Without WLAN Coverage

    Hi all,
    i have an Outdoor Area covered by Cisco Wireless LAN Solution (WCS,WLC,1550AP root and Mesh lightweight). I need to disable power transmission for some of these APs in the 2..4GHz.
    I tried two possible way, but both are not working:
    1) Set the power of 802.11g/g/n to 0. There is no such option (power can be set manually from 1 to 5 and, as per the documentation, each level is a reduction of 3dB.  Therefore, even if i put to the minimum, i cannot guarantee that there is no utilization of the 2.4GHz spectrum).
    2) Define an AP group containing these APs and don't add any SSID. Is not possible because at least one SSID must be added on each AP group.
    Can somebody advice a working solution/setting in AP/WLC/WCS that help me to avoid transmission in 2.4GHZ? Otherwise the only solution is to power them off, but is not the solution i'm looking for.
    Thanks in advance.

    In order to be sure that i didn't misunderstand are you suggesting to go in WCS on:
    Radio Detail :                                802.11b/g/n
    Configure>  Access Points > "AP_NAME" > Radio Detail
    and in Admin Status uncheck?
    Please see the attached image.
    Thanks for your reply.

  • Lumia 920 better than iPhone 5

    Looks like Nokia should have waited until after the iPhone 5 was released to announce the 920, would have made the 920 look a whole lot better than it already is!
     *note; edit by request of author.

    @feinburgrl
    Excerpt from SIG: 
    "The Bluetooth Special Interest Group (SIG) has officially announced the release of Bluetooth Core Specification 4.0, or rather, revealed the adoption of Bluetooth low energy wireless technology for 4.0. The SIG said that the new specs will open an entirely new market that requires low cost and low power connectivity. Now a small, "coin-cell" battery can power Bluetooth devices, ideal for healthcare, security, home entertainment, and other markets.
    The formal announcement stated that v4.0 will feature ultra-low peak, average and idle mode power consumption. The technology also features an enhanced range, multi-vendor interoperability, low cost, and the ability to run "for years" on standard coin-cell batteries. The specs also say that the technology supports small data packets transferred at 1 Mbps, 24 bit CRC on all packets, and even provides full AES-128 encryption.
    "With today’s announcement the race is on for product designers to be the first to market," said Michael Foley, Ph.D., executive director, Bluetooth SIG. "Bluetooth low energy modules for all sorts of new products may now be qualified – this is an important step towards our goal of enabling new markets with Bluetooth wireless technology. For example, the Continua Health Alliance has already selected Bluetooth low energy technology as a transport for the next version of its guidelines."
    The SIG said that the new specs will come in two flavors: dual-mode and single-mode. In dual-mode, Bluetooth low energy functionality is integrated into an existing Classic Bluetooth controller. The single-mode version, ideal for highly integrated and compact devices, uses a lightweight link layer for ultra low power idle mode operation."
    Knowledge not shared is knowledge wasted!
    If you find it helpfull, it's not hard to click the STAR..

  • How can i open Jbuilder project in Eclipse

    Hi All
    Can anyone tell me that how can i open Jbuilder 2006 project(.jpx)
    in Eclipse 3.2.2
    Regards

    Hello, perhaps this will be helpful : http://www-128.ibm.com/developerworks/library/os-ecidea/.
    *Edit - This link will be much more useful : http://www.bleb.org/software/jpx2eclipse/
    Laginimianeb
    Message was edited by:
    laginimaineb

  • Java IDE comparision 2007 ( netbeans , eclipse , jbuilder )

    Hi there
    I have been searching for this answer for long time , no clear work was done on it .
    Can I at least get latest compasition between
    1) netbeans
    2) eclipse
    3) myeclipse
    4) jbuilder
    thanks

    georgemc wrote:
    jwenting wrote:
    georgemc wrote:
    nasert wrote:
    georgemc , I totally agree with u , I am just curious to know about such a comparision .Then you need to provide the dimensions of that comparison. The quality of each IDE is mostly subjective, so you need to say what you're comparingIt isn't, not really.
    Notbeans is so far behind the rest of the world it's not worthy of consideration.
    The other 3 mentioned are all Eclipse (though 2 of them with some plugins to make them look more fancy).
    None can compare with IntelliJ.Between your answer and Kaj's answer below, you've managed to confirm that, yes, it actually is subjective! Can't argue with the fact that some people think Netbeans is the best thing since sliced breadWell, that depends on whether Kaj was serious (I doubt it, I've never seen someone say with a straight face that Netbeans was superior to anything).

  • Migrating from JBuilder to Eclipse IDE

    I have been working on JBuilder for last few months, although I never wanted too, but I am an employee here, so I had to:P...
    I have developed a project using java Servlets and JSP and Oracle as backend and Tomcat as webserver, which is integrated in JBuilder.
    Now I want to shift to Eclipse IDE. Please tell me that how can I import the whole project as it is in eclipse from JBuilder.
    Ill be grateful..
    Ali Hammad

    I have been working on JBuilder for last few months,
    although I never wanted too, but I am an employee
    here, so I had to:P...
    I have developed a project using java Servlets and
    JSP and Oracle as backend and Tomcat as webserver,
    which is integrated in JBuilder.
    Now I want to shift to Eclipse IDE. Please tell me
    that how can I import the whole project as it is in
    eclipse from JBuilder.Download Eclipe's WTP (Web Tool Platform) plugin too; it also can
    manage Tomcat for you. Then create an appropriate project with the
    same name as the JBuilder project. Most likely Eclipse will recognize
    the project and set its metadata files up correctly.
    kind regards,
    Jos

  • Jbuilder vs Eclipse

    Which is better Jbulder7 or Eclipse? JBuilder isnt the full enterprise version eclipse is. and also im reading the book on here and it says to put that down below , am i typing it right because Jbuilder gives me like 10 errors.
    ~sorry for stupidness~
    JoN
    public class BasicsDemo {
    public static void main(String[] args) {
    int sum = 0;
    for (int current = 1; current <= 10; current++) {
    sum += current;
    System.out.println("Sum = " + sum);
    sum = 51

    Which is better Jbulder7 or Eclipse? JBuilder isnt the
    full enterprise version eclipse is. and also im
    reading the book on here and it says to put that down
    below , am i typing it right because Jbuilder gives me
    like 10 errors.
    ~sorry for stupidness~
    JoN
    public class BasicsDemo {
    public static void main(String[] args) {
    int sum = 0;
    for (int current = 1; current <= 10;
    <= 10; current++) {
    sum += current;
    System.out.println("Sum = " + sum);
    sum = 51I guess it depends on who's paying for the IDE. If its you personally, then Eclipse is better. If its your company ,and they have the cash, then JBuilder is ( in my opinion. ) As for your code, "sum = 51", did you type that in as part of your code? That certainly won't compile. Try it without that line. Also, JBuilder is quite helpful as to what your errors are.

  • Which one do you use? eclipse, vaj, jbuilder.....

    Hi, everyone
    I just want to have a general idea which IDE is preferred by
    most of us.
    Actually, I use Context.

    Search the forums, asked so ofton it almost not fun to say
    EMACS, VI SUCKS!
    any more.

  • How do I install to JBuilder 2008 R2 using update manager.

    I am trying to install OEPE 11g to JBuilder 2008 R2 using the update manager. JBuilder is now Eclipse based. I add the install site, select OEPE to install and get the following error.
    Cannot complete the request. See the details.
    Cannot find a solution satisfying the following requirements Match
    [requiredCapability: org.eclipse.equinox.p2.iu/org.objectweb.asm/[2.2.3,2.2.3]].
    I tried the individual components to narrow down the conflict. I also made sure JBuilder was current. I am new to Eclipse and do not know how to resolve this error. Suggestions?
    Trying to install:
    Oracle Database Tools - 1.1.1.200904131333
    Oracle Enterprise Pack for Eclipse - 1.1.1.200904131333
    Oracle Spring ORM Tools - 1.1.1.200904131333
    Did install:
    JSF Facelets Tools Incubator - 0.1.0.200807291102
    Oracle Common Tools - 1.1.1.200904131333
    Oracle WebLogic Server Tools - 1.1.1.200904131333
    Spring IDE Core (required) 2.2.0v200809261800 (JBuilder 2008 R2 comes with newer version, 2.2.1.v200811281800)

    It seems the SpringIDE comes with JBuilder is not compatible with OEPE.
    Try download the OEPE plugins from
    http://download.oracle.com/otn_software/oepe/ganymede/oepe-ganymede-11.1.1.1.1.200904131333.zip
    and unzip it into the /dropins folder of the JBuilder Eclispe installation directory. Then restart with -clean command line option.

  • Large project in JBuilder 2007... How do I create an executable JAR?

    First, I've googled quite a bit and keep getting thiings about "Jbuilder Application Wizard", etc... Well, I don't see any "wizard" menu in the version of JBuilder I'm using!
    I'm using JBuilder 2007 Enterprise edition, however it's a trial version apparently. I'm not sure if that matters, and perhaps the functionality was taken out with the trial version..
    Anyway, the issue is that I have a multi class (with one main function) program that I want to run (it's a command line based application) as an executable JAR file. The program uses LOTS of include statements including quite a few custom libraries ("external JARs") that I had to import.
    Basically I want the application to do exactly what it does now when I hit the ol' "RUN" button. Except I want to be able to run it from a batch file with "java -jar (or whatever) myProgram".
    Anybody have any experience with this type of thing?

    OK, here's what I've got:
    I've got a jar file that contains:
    1. a folder "importQD"
    2. a folder called META-INF
    3. a .classpath file
    4. a .project file
    Inside the importQD folder are my three .class files that are the classes I created myself.
    Inside the META-INF folder is the MANIFEST.MF file which looks like:
    Manifest-Version: 1.0
    Main-Class: importQD.ImportQDInside the .classpath file we have:
    <?xml version="1.0" encoding="UTF-8"?>
    <classpath>
         <classpathentry kind="src" path=""/>
         <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
         <classpathentry kind="lib" path="C:\Programs\CMQualityDocumentImport\CMUploadInterface83.jar"/>
         <classpathentry kind="lib" path="C:\Programs\CMQualityDocumentImport\DBCon.jar"/>
         <classpathentry kind="lib" path="C:\Programs\CMQualityDocumentImport\SENAeMail.jar"/>
         <classpathentry kind="lib" path="C:\Programs\CMQualityDocumentImport\SENAFileHandler.jar"/>
         <classpathentry kind="output" path=""/>
    </classpath>NOTE: All of the paths point at the .jar files as they are located on the machine the final version will be running on.
    Inside the .project file we have:
    <?xml version="1.0" encoding="UTF-8"?>
    <projectDescription>
         <name>importOldQD</name>
         <comment></comment>
         <projects>
         </projects>
         <buildSpec>
              <buildCommand>
                   <name>org.eclipse.jdt.core.javabuilder</name>
                   <arguments>
                   </arguments>
              </buildCommand>
         </buildSpec>
         <natures>
              <nature>org.eclipse.jdt.core.javanature</nature>
         </natures>
    </projectDescription>Now, it would make sense to me that this should be all good to go, and that I should be able to run this via a command line now. When I try
    java -jar importQD.jar I get a ton of various errors such as "Exception in thread "main" java.lang.UnsupportedClassVersionError: importQD/importQD (unsupported major.minor version 49.0) + a nice stack trace with a bunch of java.lang and java.net references.
    What am I doing wrong?

  • [HTML5 App] "authentication not supported" when attempt to clone git repository on Eclipse

    Greetings,
      I attempt to clone a project from git.hanatrial.ondemand.com to eclipse by following Rui's guideline (Lightweight HTML5 apps and Git on SAP HANA Cloud Platform) but authentication not supported error prompted.
      Do I need additional authentication in order to do that?
    BR,
    Chapman

    lykwydchykyn wrote:is this indeed an authentication issue of some kind?
    The "Permission denied (publickey)" message suggests that this is the case. Double-check that your ~/.ssh/config and the public key on the AUR web interface are correct.

Maybe you are looking for

  • Ipod nano - cant restore - firmward file corrupt

    my ipod nano (1st generation)was originally formatted for a mac, and I need to perform a restore because my main computer is now a pc. However, when I try to restore the ipod I get an error message saying that the firmware file is corrupt..I have fol

  • How do I get a list of all missing files in a catalog in LR2?

    Is there an easy way to get a list of all missing files for the thumbnails in Lr2? I know the symbol that appears in the upper right corner of any particular photo that is missing its file, but how can I get a list of all such photos for an entire ca

  • Controlling a Movie Clip on the Main Timeline from a loaded SWF?

    Is it possible to control a MovieClip on the main timelne from another loaded clip? I see posts that control loaded clips, but most are all from the loader in the main timeline.  I have a moviclip on the main timeline that I want to make visible or i

  • Employee Promotion Details

    I need to extract information about Promotion of an Employee and Promotion date. I need a Query to get promoted employees in an yaer. I tried queying PER_ALL_ASSIGNMENTS_M table. Can anyone give me the query to get employees list who are promoted in

  • Colormanagment between Photoshop CS5 and Lightroom 5, Adobe RGB

    Hello, In Photoshop CS5 are the Colours, Brightness diffrent to Lightroom 5 as you can see in this picture: https://dl.dropboxusercontent.com/u/33568224/Bildschirmfoto%202014-10-21%20um%2023.45.16.p ng My settings in the colormanagment in PS is Adobe