我正在将我的项目迁移到GWT。我在服务器启动时从数据库加载一些值。我想用GWT实现这一点(当我在Eclipse中运行我的应用程序 - 作为Web应用程序运行时)。这就是我目前使用Tomcat服务器的方式。
public class StartupListner implements ServletContextListener{
@Override
public void contextDestroyed(ServletContextEvent arg0) {
// TODO Auto-generated method stub
}
@Override
public void contextInitialized(ServletContextEvent arg0) {
// TODO Auto-generated method stub
try {
Cache.ruleMap = DatabaseHelper.getConfiguredRules();
Cache.customerRules = DatabaseHelper.getCustomerRules();
}catch (Exception e){
}
}
答案 0 :(得分:0)
答案 1 :(得分:0)
您是否忘记将侦听器放在web.xml中?
GWT应用程序与任何Java Web应用程序相同:它依赖于servlet技术。在服务器端,没有任何变化:环境是相同的