https://blogs.oracle.com/wlc/entry/%E9%80%A3%E8%BC%89_weblogic_server_12c%E3%81%A7java_ee3
をやると、
Java Resources/src/managed/IndexBean.java の import javax.faces.bean.ManagedBean; がエラー。
何かライブラリをリンクする必要があるのかしら。
→OEPEにて、プロジェクトのプロパティからプロジェクトファセットを表示、JSFファセットを追加。その際にMojarraのライブラリ(javax.faces.jar)がダウンロードされるのでそれを使うととりあえずコンパイルは通るが…WebLogicJSFのライブラリ持ってるような気がするんだよな。

Separate JSF and JSTL JAR files and implementation JAR files are also provided in the WL_HOME/server/lib/api.jar file. You can reference these JAR files for compilation purposes or when using other utilities while developing Web applications.

http://docs.oracle.com/cd/E24329_01/web.1211/e21049/configurejsfandjtsl.htm

と言ってるけど。しかしapi.jarはとっくにクラスパスに入ってた謎。
→上のは12.1.1の話だった。12.1.2では

The JSF and JSTL libraries are bundled as WAR files and are located in the WL_HOME/common/deployable-libraries directory. The JSF libraries include the JSTL JAR files for convenience, so that if an application references a JSF library, it automatically gets JSTL support as well.

http://docs.oracle.com/middleware/1212/wls/WBAPP/configurejsfandjtsl.htm#WBAPP198

というか https://blogs.oracle.com/wlc/entry/%E9%80%A3%E8%BC%89_weblogic_server_12c%E3%81%A7java_ee1 をやってみればいいのか。