Rajender Saini
Rajender Saini

Reputation: 614

How to deploy single changed JSP on weblogic without restart

I have big web app on weblogic. I am doing client side development. Every time i make some ui element changes I need to redeploy the whole web app to see the changes. This web app takes 20 minutes to get deploy. Is there smart way to just deploy the single JSP like we can do in tomcat ?

Upvotes: 3

Views: 16585

Answers (2)

varsha Tomar
varsha Tomar

Reputation: 1

C:\Oracle\Middleware\user_projects\domains\TOMS_DOMAIN_NEW\servers\AdminServer\tmp_WL_user\cms\mf3i5c\war\cms\web-inf

you can find your domin name in user_projects. and copy your jsp in web-inf.

Upvotes: 0

Display Name is missing
Display Name is missing

Reputation: 6227

You will want to set your application to nostage mode. This will allow it to automatically detect changes to JSPs. stage mode copies the application to each individual server and does not automatically detect changes, it is probably what your application is defaulting to.

See more here: http://docs.oracle.com/cd/E11035_01/wls100/deployment/deploy.html#wp1024366

Upvotes: 4

Related Questions