Search Results for: JSTL

java.lang.ClassNotFoundException : javax.servlet.jsp.jstl.core.Config

While deploying a web application of spring mvc with maven and jsp on tomcat 7.0. If you got a following problem. Problem- java.lang.ClassNotFoundException: javax.servlet.jsp.jstl.core.Config at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1714) at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1559) at org.apache.myfaces.view.jsp.JspViewDeclarationLanguage.buildView(JspViewDeclarationLanguage.java:91) at org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:78) at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:241) at …

JSTL fn:trim() Function

JSTL Trim function is used to remove white space from the start and end of the String. The fn:trim() function removes white space from both ends of a string. Syntax: The fn:trim() function has following …

JSTL fn:toUpperCase() Function

The fn:toUpperCase() function converts all the characters of a string to uppercase. JSTL toLowerCase Function returns String that contains all characters in lower case. Syntax: The fn:toUpperCase() function has following syntax: java.lang.String toLowerCase(java.lang.String) Example: Following …

JSTL fn:toLowerCase() Function

JSTL toLowerCase Function returns String that contains all characters in lower case. The fn:toLowerCase() function converts all the characters of a string to lowercase. Syntax: The fn:toLowerCase() function has following syntax: java.lang.String toLowerCase(java.lang.String) Example: Following …

JSTL fn:substringBefore() Function

JSTL SubstringBefore function is used to get the substring of target string. This function takes 2 parameters. First parameter in JSTL SubstringBefore function is the target String from which you want to derive the substring. …

JSTL fn:substringAfter() Function

The fn:substringAfter() function returns the part of a string after a specified substring. JSTL SubstringAfter function is used to get the substring of target string. This function takes 2 parameters. First parameter in JSTL SubstringAfter …

JSTL fn:substring() Function

JSTL Substring function is used to get the substring of target string. This function takes 3 parameters. First parameter in JSTL Substring function is the target String from which you want to derive the substring. …