You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
321 B

3 years ago
  1. package com;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.session.data.redis.config.annotation.web.http.EnableRedisHttpSession;
  4. @EnableRedisHttpSession
  5. public class XmApplication {
  6. public static void main(String[] args) {
  7. SpringApplication.run(XmApplication.class,args);
  8. }
  9. }