使用此命令使用jetty-runner java -jar prject123/web/target/dependency/jetty-runner.jar project123/web/target/*.war
我所拥有的jstl代码就像这样简单:<c:out value="hi there"></c:out>
,我从渲染的网页获得的源代码是<c:out value></c:out>
所以似乎jstl标签已完成未解析。
我应该提到除了使用jetty-runner之外,启动Web应用程序的其他方法似乎与jstl标记一起使用,例如mvn -pl project123/web jetty:run-exploded
我一直在努力解决这个问题。任何建议将不胜感激!
回答丹尼尔的问题: 我使用8.1.0.RC4用于jetty-runner和maven jetty插件。我还在我的pom文件中包含了jstl 1.2。
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
jsp页面源代码是
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<h1>Hello!!</h1> <c:out value="you!"> </c:out>
</body>
</html>
答案 0 :(得分:2)
java --lib project123/web/$PATH_TO_THE_LIB -jar prject123/web/target/dependency/jetty-runner.jar project123/web/target/*.war
- lib告诉jetty runner加载指定路径中的jar。
答案 1 :(得分:0)
我认为你还需要标准的taglibs依赖
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.1.2</version>
</dependency>
并且可能将jstl依赖项更改为javax.servlet?
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.1.2</version>
</dependency>
答案 2 :(得分:0)
在查找jstl问题时遇到此问题/答案的人,以下链接可能会有所帮助。 http://wiki.eclipse.org/Jetty/Howto/Configure_JSP