In a
jsp class called Init.jsp I define some variables that has to be used by all the jsp pages. An example is:
java.util.Locale ressources = ( java.util.Locale ) init.get("ressources");
At the moment I got an error because the other jsp pages don�t know the variables defined in the init.
cannot resolve symbol ressources How can I solve the problem?