CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Hybrid View

  1. #1
    Join Date
    Aug 2013
    Posts
    1

    What is difference between debug,deploy,build and run in java?

    hi codeguru
    I just want to know that what is difference between debug,deploy,build and run in a java program?

  2. #2
    Join Date
    Aug 2013
    Posts
    1

    Re: What is difference between debug,deploy,build and run in java?

    Hey dhk123,

    when running a program it is simply executed by someone (like you're running your browsing while reading this).
    Debugging is a special kind of running a program - you can set break points, jump into certain code sections, check and modify variables and follow the flow of your code.
    Building means that you prepare software for deployment. For example: You build all your source code to a jar or war file.
    Deployment is the process of taking a built file and copy it on a server, for instance, so that others can run it. For example: You deploy an application on a Glassfish server.

    Hope that was clear enough. If not, I can go into fufther details.

    Best regards,
    Andy

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured