static SpellDictionary spellDictionary;
public void init(ServletConfig config) throws MalformedURLException, URISyntaxException, FileNotFoundException, IOException
{
File file = new File(config.getServletContext().getRealPath("/WEB-INF/dictionary/english.0"));
spellDictionary = new GenericSpellDictionary(file);
spellDictionary.addWord("a");
}