使用带有Quercus的Spring的PHP代码

时间:2015-01-28 09:57:05

标签: jsp spring-mvc resin quercus

我正在开发一个Spring-MVC应用程序,我希望集成一些Legacy PHP代码。在PHP文件中,我主要是静态内容,我想在JSP文件中导入和使用include和include一次的PHP标记。经过研究,我发现使用Quercus完成这项任务。不幸的是,我找不到很多他们想直接导入PHP文件的参考或示例。我可以展示我的代码是怎样的,任何人都可以告诉我如何导入PHP文件。谢谢:

JSP文件:

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<head>
    <title>Title of page</title>
</head>
 Now here is where I have such PHP code :
<?php
$thisPage="impressum";
include("php/top.php");
include("php/header.php");
include_once("php/analyticstracking.php");
?>

我对PHP没有那么多的知识,所以这可能看起来很无趣,但是如何实现以上包括Quercus。我已经安装了战争。

0 个答案:

没有答案