Personal Musing and Software Development Stuffs

Just another Personal site

Can not find the tag library descriptor for “http://java.sun.com/jsp/jstl/core”

leave a comment

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

If you see the error Can not find the tag library descriptor for “http://java.sun.com/jsp/jstl/core” — which I encountered while going through a Spring MVC and JSTL/JSP tutorial — to fix this you need to reference the JSTL jar in your project. If you are using maven, download the jar file file maven central by adding this to your maven dependencies:


  javax.servlet
  jstl
  1.2

You can also grap the jar files from java.dev.net

Written by rolly.ferolino

August 19th, 2011 at 9:47 pm

Posted in Uncategorized

AXIS2 Quickstart StockQuoteService java2WSDL ClassNotFoundException

leave a comment

Running this in the command line:

$AXIS2_HOME/bin/java2wsdl.sh -cp . -cn samples.quickstart.service.pojo.StockQuoteService -of StockQuoteService.wsdl

when not executed in the right location will produce “ClassNotFoundException”. To fix it make sure that you execute the above command in “axis2-1.6.0/samples/quickstart/src” location because the -cn namespace starts from there.

Written by rolly.ferolino

August 9th, 2011 at 7:11 pm

Posted in Java