J2Ee compiler

Discussion in 'Programming' started by lucaskent, Jan 28, 2011.

  1. #1
    Hey guys i need a j2ee compilor can any one suggest please.
    Link to the prog is appreciated.
     
    lucaskent, Jan 28, 2011 IP
  2. Cozmic

    Cozmic Member

    Messages:
    146
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    48
    #2
    Cozmic, Jan 29, 2011 IP
  3. lucaskent

    lucaskent Peon

    Messages:
    91
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I have installed JDK what else do i need...
     
    lucaskent, Jan 29, 2011 IP
  4. Cromulent

    Cromulent Greenhorn

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #4
    You need a Java EE application server to run your code in. Glassfish is pretty popular. You would probably do well with an IDE as well (Netbeans, Eclipse or IntelliJ are all good options). Then it is just a case of spending a few months / years learning the huge framework(s) that is J2EE.

    I would highly recommend that you start straight away with Java EE 6. It is much easier to use than earlier versions due to the fact that you no longer need any XML configuration at all if you don't want it. You can do it all using annotations (although it can take awhile to find out what all the available annotations are though).
     
    Cromulent, Feb 6, 2011 IP
  5. lucaskent

    lucaskent Peon

    Messages:
    91
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Thanks cromulent... i installed netbeans...but am still unaware of its functionalities guess will have to go through it.
    and can any one please suggest me some good j2ee beginners guide pdf
    thanks
     
    lucaskent, Feb 6, 2011 IP
  6. needproject

    needproject Peon

    Messages:
    7
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Actually, i have a lil project, which may be interested to you. its a one time project.
    Are you interested? It must be completed within 24hrs.
    It is a simple JavaDesktopApplication build using Netbeans.
    butgets 10-20USD.

    thanks for replying
     
    needproject, May 18, 2011 IP
  7. X P S

    X P S Well-Known Member

    Messages:
    500
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    110
    #7
    NetBeans is an IDE (Integrated Development Environment). If you have installed JDK, you can use JAVA Compiler without the need of IDE. Here are the steps:

    Open cmd.
    D: // DRIVE WITH YOUR JAVA FILES
    cd Projects // PATH TO YOUR JAVA FILES
    set path C:\Program Files\Java\JDK[YOUR_VERSION]\Bin\ // ASSUMING THAT YOU HAVE INSTALLED JDK IN C:
    javac MyFile.java // Command to compile the Java file
    java MyFile // Command to run the Class file

    Actually javac & java are available in the Bin directory of JDK. If you are not a newbie and know how to set the path, this wouldn't be a great deal for you.
     
    X P S, May 21, 2011 IP