我想知道是否可以在Spring MVC页面中内联编写PHP代码。
像
这样的东西<html xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:tiles="http://tiles.apache.org/tags-tiles"
xmlns:spring="http://www.springframework.org/tags"
xmlns:util="urn:jsptagdir:/WEB-INF/tags/util" >
<jsp:output doctype-root-element="HTML" doctype-system="about:legacy-compat" />
<jsp:directive.page contentType="text/html;charset=UTF-8" />
<jsp:directive.page pageEncoding="UTF-8" />
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<title><tiles:insertAttribute name="title"/></title>
<util:load-scripts />
<spring:message code="application_name" var="app_name" />
</head>
<body style="background-image: url(${resources}/images/Main_bg.jpg);">
<div id="wrapper">
<lang:PHP>
require_once(somephpfile.php);
...
我有一大堆遗留的PHP代码,我希望将它集成到我正在构建的更大的系统中,新系统是用Spring和Spring MVC编写的。
答案 0 :(得分:3)
是的,你可以。例如,通过使用Quercus在JVM中运行php,您可能需要编写某种自定义标记。
答案 1 :(得分:1)
这个库允许你在春天使用php作为动态语言和模板引擎。 https://github.com/PaulWeb/quercusspring