|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
在11i中,把a.jsp放到$OA_HTML下,最多重启一下Apahce,就可以使用。
在R12,把a.jsp放到$OA_HTML下,重启一下Apahce和OC4J,打开
a.jsp报An exception occured.
URL=http://XXXXXX:8000/OA_HTML/a.jsp?transactionid=1098395734language_code=US&&OAFMID=1005979&OAPB=_OAFMID&oas=PIpnyq2CmTiOEMQ13Ya45A..
javax.servlet.ServletException: oracle.classloader.util.AnnotatedClassNotFoundException:
Missing class: _a
措施:
cd $FND_TOP/patch/115/bin
ojspCompile.pl --compile -s $OA_HTML\a.jsp
或者
When you continue with extending your jsp you will identify that the change in jsp is not recognized.
I changed in addition the following:
file
$INST_TOP/ora/10.1.3/j2ee/oacore/application-deployments/oacore/html/orion-web.xml
<param-name>developer_mode</param-name>
<param-value>true</param-value>
<param-name>main_mode</param-name>
<param-value>recompile</param-value>
afterwards please restart apache
$ADMIN_SCRIPTS_HOME/adapcctl.sh stopall
$ADMIN_SCRIPTS_HOME/adapcctl.sh startall
now, whenever you change a character in your jsp, this will immediate reflect your output. In production environments this setting is not recommend, but in DEV it' common |
|