Wednesday, August 17, 2011

Y fly JSP compilation doesn't happen in R12 ?

In R12

JSP compilation is set to "justrun" which disables fly compilation of jsp's in R12 unlike 11i.
One of the reasons being, to have better performance. Also we don't move _pages in R12 as in 11i for the same reason.

If you want to have fly compilation in R12 as well

- Change s_jsp_main_mode in $CONTEXT_FILE from "justrun" to "recompile"
- Run Autoconfig

-- U can verify the changes after autoconfig  in


$INST_TOP/ora/10.1.3/j2ee/oacore/application-deployments/oacore/html/orion-web.xml

<init-param>
<param-name>main_mode</param-name>
<param-value>recompile</param-value>
</init-param>

Note : For compiling JSP's manually in Linux


. ./oracle/apps/apps_st/appl/APPS<SID>_<host>.env




cd $FND_TOP/patch/115/bin
perl ojspCompile.pl --compile --flush -p 2


UR's Key Run ;-) 

No comments:

Post a Comment