我正在尝试使用 Googlemaps taglib 将 Google Maps 添加到我的 JSP 中。
我已将此添加到我的 maven pom 中
<dependency>
<groupId>com.lamatek</groupId>
<artifactId>googlemaps</artifactId>
<version>0.98c</version>
<scope>provided<>/scope
</dependency>
然后这包括googlemaps-0.98c
我在 NetBeans 中的项目库下的库,我右键单击并选择Manually install artifact
并找到我下载的 googlemaps.jar 文件。
然后我将其添加到我的 taglibs 文件中
<%@taglib prefix="googlemaps" uri="/WEB-INF/googlemaps" %>
然后将其包含在我真正想在我的jsp上显示地图的地方
<googlemaps:map id="map" width="250" height="300" version="2" type="STREET"
zoom="12">
<googlemaps:key domain="localhost" key="xxxx"/>
<googlemaps:point id="point1" address="74 Connors Lane" city="Elkton"
state="MD" zipcode="21921" country="US"/>
<googlemaps:marker id="marker1" point="point1"/>
</googlemaps:map>
但是当我加载我的应用程序时,我收到以下错误。
org.apache.jasper.JasperException: /jsp/dashboard.jsp(1,1) /jsp/common/taglibs.jsp(6,56) PWC6117: File "/WEB-INF/googlemaps" not found
root cause
org.apache.jasper.JasperException: /jsp/common/taglibs.jsp(6,56) PWC6117: File "/WEB-INF/googlemaps" not found
我错过了一些简单的事情吗?到目前为止,我无法发现我做错了什么..