Java.lang.ExceptionInInitializerError: Arquivo de propriedades nao encontrado

Pessoal,

Pq aparece essa msg? o FWSecurity.properties ja ésta la faz tempo :frowning:

Que framework você está utilizando?

nenhum em específico…

segue o meu web.xml:

<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE web-app
     PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
     "http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>

    <!-- Inicia o servlet que faz as tarefas de inicilializacao do projeto -->
    <servlet>
        <servlet-name>
            StartupServlet
        </servlet-name>
        <servlet-class>
            br.com.cit.projects.xxxx.scpf.startup.StartupServlet
        </servlet-class>
	<load-on-startup/>
    </servlet>
    <taglib>
        <taglib-uri>cit_tags.tld</taglib-uri>
        <taglib-location>/WEB-INF/jsp/cit_tags.tld</taglib-location>
    </taglib>

    <taglib>
        <taglib-uri>security_tags.tld</taglib-uri>
        <taglib-location>/WEB-INF/jsp/security_tags.tld</taglib-location>
    </taglib>

    <taglib>
        <taglib-uri>eflow_tags.tld</taglib-uri>
        <taglib-location>/WEB-INF/jsp/eflow_tags.tld</taglib-location>
    </taglib>

    <taglib>
        <taglib-uri>quickform_tags.tld</taglib-uri>
        <taglib-location>/WEB-INF/jsp/quickform_tags.tld</taglib-location>
    </taglib>

    <security-constraint>
      <web-resource-collection>
         <web-resource-name>Protected Area</web-resource-name>
	 <!-- Define the context-relative URL(s) to be protected -->
         <url-pattern>/jsp/security/protected/*</url-pattern>
	 <!-- If you list http methods, only those methods are protected -->
	 <http-method>DELETE</http-method>
         <http-method>GET</http-method>
         <http-method>POST</http-method>
	 <http-method>PUT</http-method>
      </web-resource-collection>
      <auth-constraint>
         <!-- Anyone with one of the listed roles may access this area -->
         <role-name>tomcat</role-name>
	 <role-name>role1</role-name>
      </auth-constraint>
    </security-constraint>

    <!-- Form-based login is enabled by default.  If you wish to
         try Basic authentication, comment out the <login-config>
         section below and uncomment the one above. -->
    <login-config>
      <auth-method>FORM</auth-method>
      <realm-name>Example Form-Based Authentication Area</realm-name>
      <form-login-config>
        <form-login-page>/jsp/security/login/login.jsp</form-login-page>
        <form-error-page>/jsp/security/login/error.jsp</form-error-page>
      </form-login-config>
    </login-config>

</web-app>

Quando aparece essa mensagem? Após qual ação executada isso ocorre?

quando tenta executar o jsp

Posta o código do teu JSP.

Aonde está o teu arquivo de recursos?