Tuesday 15 January 2013

javax.servlet.jsp.JspException: Cannot find message resources under key org.apache.struts.action.MESSAGE

,

Exception: 

javax.servlet.jsp.JspException: Cannot find message resources under key org.apache.struts.action.MESSAGE at org.apache.struts.taglib.TagUtils.retrieveMessageResources(TagUtils.java:1189) at org.apache.struts.taglib.TagUtils.message(TagUtils.java:1038) at org.apache.struts.taglib.TagUtils.message(TagUtils.java:1013) at org.apache.struts.taglib.bean.WriteTag.retrieveFormatString(WriteTag.java:254) at org.apache.struts.taglib.bean.WriteTag.formatValue(WriteTag.java:317) at org.apache.struts.taglib.bean.WriteTag.doStartTag(WriteTag.java:232)...

Reason 

  1. you have not included properties file in  resource stuts config file.

Possible solution : 

  1. Define a property file and add in resources of struts-config.xml.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC 
"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN" 
"http://jakarta.apache.org/struts/dtds/struts-config_1_3.dtd">
 
<struts-config>
 
    <message-resources
        parameter="com.test.common.properties.person" />
 
</struts-config>

0 comments to “javax.servlet.jsp.JspException: Cannot find message resources under key org.apache.struts.action.MESSAGE”

Post a Comment