您可以按照以下步骤进行操作
public class WebConfig implements WebApplicationInitializer { @Override public void onStartup(ServletContext servletContext) throws ServletException { HashSet<SessionTrackingMode> set = new HashSet<SessionTrackingMode>(); set.add(SessionTrackingMode.cookie); servletContext.setSessionTrackingModes(set); }}


