我最近一直在尝试使用JSTL,但遇到了一些问题。
这是我的hello.JSP中的一个标签:
<p>Greetings, it is now <c:out value="${now}"/></p>
它应该显示当前时间,但我得到的输出是:
Greetings, it is now ${now}
标签是从SpringSource教程中编写的,所以它应该是正确的,但逻辑似乎被跳过了……不知道为什么会这样。我有一个参考库中的jstl.jar
<%@ taglib prefix="c" uri="http://java.su
通过查看教程系列JSP, Servlets and JDBC for Beginners: Build a Database App on ,由Chad Darby完成,并在的帮助下,我用Intellij IDEA编写了以下代码
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%--To use JSTL core tags we need to import the following URL with prefix--%>
<%@ page c