Servlet2.4からWEB-INFの中にJSP置けるようになったの?

Servlet2.4の仕様書で該当箇所を見つけられてないんだけど,WebLogic9.0のドキュメントに気になる記述が...

WEB-INF ディレクトリは、アプリケーションのパブリック ドキュメント ツリーの一部ではありません。WEB-INF ディレクトリ内には、コンテナによってクライアントへ直接提供されるファイルはありません。ただし、WEB-INF ディレクトリのコンテンツは、ServletContext に対する getResource および getResourceAsStream メソッド呼び出しを使用するサーブレット コードから認識でき、RequestDispatcher 呼び出しを使用して公開されることがあります。

http://edocs.beasys.co.jp/e-docs/wls/docs90/notes/new.html#1225559

WebLogic8.0(Servlet2.3)までは,WEB-INF内のJSPに対してRequestDispatcherを取得することは出来なかったんだけど,WebLogic9.0(Servlet2.4)だとできるってこと?
#ちなみに,Tomcatは昔からできた。


これが,Servlet2.4の仕様で明言されたってんだったら,すごい事なんだけど,どこに書いてるんだろう...
あとWebLogic9.0が手元にないんで試せない。:-(


(追記)書いてあるとこ見つけた(太字の下線部がそう)。

Servlet2.4 - SRV.9.5 Directory Structure
The WEB-INF node is not part of the public document tree of the application. No file contained in the WEB-INF directory may be served directly to a client by the container. However, the contents of the WEB-INF directory are visible to servlet code using the getResource and getResourceAsStream method calls on the ServletContext, and may be exposed using the RequestDispatcher calls. Hence, if the Application Developer needs access, from servlet code, to application specific configuration information that he does not wish to be exposed directly to the Web client, he may place it under this directory.

The Java Community Process(SM) Program - communityprocess - final

でも,Servlet2.3だとこう書いてる。

Servlet2.3 - SRV.9.5 Directory Structure
The WEB-INF node is not part of the public document tree of the application. No file contained in the WEB-INF directory may be served directly to a client by the container. However, the contents of the WEB-INF directory are visible to servlet code using the getResource and getResourceAsStream method calls on the ServletContext. Hence, if the Application Developer needs access, from servlet code, to application specific configuration information that he does not wish to be exposed to the web client, he may place it under this directory.

The Java Community Process(SM) Program - communityprocess - first

ふーん,Servlet2.4からはWEB-INFの下にJSP置いてもいいのかな...
#「may be」ってのが,とっても気になるけど。:-P