• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

compiling jsp/java class in myeclipse

 
Ranch Hand
Posts: 82
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am using my eclipse with weblogic.
To compile and deploy my changes I use ant ,this compiles and deploys the entire application therefore takes considerable amount of time.
how do i compile a single jsp or a java class in myeclipse to save my time.

thanks in advance.
Dhriti.
 
Ranch Hand
Posts: 120
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
1. If you have made changes to a JSP, then you need not redeploy the entire app. Write an ant-target for just copying JSPs to the deployment folder directly and weblogic will compile the JSP and load it up when you hit the page. No need to restart server even.

2. For changes to servlet or entity beans - look at hot deploying in weblogic. It will take a fraction of the time - because you need not stop/start server. You might need to do some googling to enable hot deployment.
 
reply
    Bookmark Topic Watch Topic
  • New Topic