JSTL fmt:setBundle Formatting Tag

The JSTL <fmt:setBundle> Formatting Tag is used to load a resource bundle and set it into the bundle configuration variable.

Syntax:

<fmt:setBundle basename=”basenameOfResourceBundle” var=”varName” />

fmt:setBundle tag attributes:

Attribute Description Required
basename It specify the base name of the resource bundle family to expose as a scoped or configuration variable. Yes
var It specify the name of the variable to store the new bundle. No
scope It specify the scope of the variable to store the new bundle. No

Example:

test.jsp

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


	
		fmt:setBundle JSTL formatting tag example
	
	
	  
          

web.xml


	
  
          test.jsp
  	


Output:

jsp example 49
 
Download this example.
 
Next Topic: JSTL fmt:setLocale Formatting Tag with example.
Previous Topic: JSTL fmt:bundle Formatting Tag with example.