我的英语有些问题,所以我为错误道歉。
我是Java编程的初学者。我使用 IntelliJIdea 作为 IDE,使用 Vaadin 框架创建 GUI,使用 tomcat 作为 Web 服务器。项目是用 maven 生成的。要创建应用程序,我使用以下源作为示例:
有 Application 类,(它不是com.vaadin.Application
继承者),而是单例。
package com.exadel.dinnerorders.vaadinwindow.application;
import com.exadel.dinnerorders.entity.Order;
import com.exadel.dinnerorders.entity.User;
import com.exadel.dinnerorders.service.TasksManagerService;
import com.google.common.eventbus.EventBus;
public class Application {
private EventBus eventBus = new EventBus();
private static Application INSTANCE = new Application();
private User user;
private Order order;
private TasksManagerService tasksManagerService = new TasksManagerService();
private Application() {
tasksManagerService.start();
}
public synchronized static Application getInstance(){
return INSTANCE;
}
public EventBus getEventBus() {
return eventBus;
}
public void setUser(User user) {
this.user = user;
}
public User getUser() {
return user;
}
public Order getOrder() {
return order;
}
public void setOrder(Order order) {
this.order = order;
}
public TasksManagerService getTasksManagerService() {
return tasksManagerService;
}
}
还有WebApplicationController
类,它扩展了com.vaadin.Application
.
package com.exadel.dinnerorders.vaadinwindow.application;
import com.google.common.eventbus.EventBus;
import com.google.common.eventbus.Subscribe;
import com.vaadin.terminal.Sizeable;
import com.vaadin.ui.*;
import java.util.Collection;
public class WebApplicationController extends com.vaadin.Application {
private EventBus eventBus = Application.getInstance().getEventBus();
private Layout loginLayout;
private String datePattern = "YYYY-MM-DD";
@Override
public void init() {
createLayouts();
createMainWindow();
eventBus.register(this);
setTheme("apptheme");
}
//some another methods for initialization main window and layouts
}
所以,看来我的应用程序运行良好。但我遇到了下一个问题:我在 Tomcat 7 配置的想法中运行应用程序。它启动没有任何问题。我将 Opera 作为浏览器打开并以 user1 等身份登录。一切似乎都正常。然后我打开 Google Chrome 或其他浏览器并以 user2 身份登录。如果在 Opera 中刷新窗口,它将显示知道 user2 已登录,但不是 user1。我曾尝试在不同的计算机上做同样的事情,我得到了相同的结果。(在一台机器上登录为 user1,在另一台机器上登录为 user2)。Firebug 显示 sessionID 在不同的浏览器中是不同的。
似乎问题出在我配置 servlet 的 web.xml 文件中。但是我尝试了不同的配置示例,并且总是得到相同的结果。
不幸的是,我没有设法在谷歌或其他论坛中找到答案。