weblogic生產模式恢復到開發模式

quanshengaa發表於2015-04-10
1、weblogic9.2/10
首先,找到*:\bea\user_projects\domains\mydomain\config\config.xml檔案中true
其次,修改true為false,重啟即可;
2、weblogic8.1
首先,找到d:\bea\user_projects\domains\mydomain80\startWebLogic.cmd檔案中set PRODUCTION_MODE=true;
其次,修改true為false,重啟即可;
3、weblogic 開發模式與產品模式有何區別
@rem  Set  Production  Mode. When  set  to  true,  the  server  starts  up  in  production  mode.    When 
@rem  set  to  false,  the  server  starts  up  in  development  mode. The  default  is  false. 
set  STARTMODE=true 
--------------------------------------------------------------- 
據weblogic技術工程師說,產品模式是為保證速度快放在指定目錄下,他的包不會自動更新。開發模式是比較自由的,它保證開發靈活性,隨便把它扔哪裡都會自動更新,這樣會影響速度。一般地開發好的產品,都給客戶用產品模式部署。 
--------------------------------------------------------------- 
You  can  start  your  domain  in  one  of  two  modes,  development  or  production.  You  use  development  mode  while  you  are  developing  your  applications.  Development  mode  uses  a  relaxed  security  configuration  and  allows  you  to  auto-deploy  applications.  You  use  production  mode  when  your  application  is  running  in  its  final  form.  A  production  domain  uses  full  security  and  may  use  clusters  or  other  advanced  features. 
--------------------------------------------------------------- 
開發模式下,主要是為了滿足使用者的應用經常變化的需求,server會自動重新整理你的應用,可以立即看到更改的最新頁面,但是這樣就會影響效率。所以,在正式執行的環境,一般應用變化較少,建議選擇產品模式提高效能。 
--------------------------------------------------------------- 
開發模式下支援熱部署,同時啟動的速度慢,執行效能不如產品模式。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/15797451/viewspace-1561721/,如需轉載,請註明出處,否則將追究法律責任。

相關文章