プロジェクトの設定

ビルドしたQuercus-GAE-1.0-SNAPSHOT.jarをWEB-INF/libに配置し、web.xmlを以下のように設定する。

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
<web-app>
  <description>...</description>

  <servlet>
    <servlet-name>Quercus Servlet</servlet-name>
    <servlet-class>com.caucho.quercus.servlet.QuercusServlet</servlet-class>
    <init-param>
      <param-name>script-encoding</param-name>
      <param-value>UTF-8</param-value>
    </init-param>

    <init-param>
      <param-name>ini-file</param-name>
      <param-value>WEB-INF/php.ini</param-value>
    </init-param>
  </servlet>

  <servlet-mapping>
    <servlet-name>Quercus Servlet</servlet-name>
    <url-pattern>*.php</url-pattern>
  </servlet-mapping>

  <welcome-file-list>
    <welcome-file>/index.php</welcome-file>
  </welcome-file-list>
</web-app>

また、appengine-web.xmlを以下のように変更する。*.phpファイルを静的ファイル対象外とすることでQuercusServletで処理されるようにしている。

<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
  <application>...</application>
  <version>1</version>
  <static-files>
    <exclude path="/**.php" />
  </static-files>
  <resource-files>
    <include path="/**.php" />
  </resource-files>
</appengine-web-app>

以上で準備完了だ。