| | |
| | | import org.springframework.boot.web.servlet.ServletRegistrationBean; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.context.annotation.ComponentScan; |
| | | import org.springframework.context.annotation.ImportResource; |
| | | import org.springframework.session.data.redis.config.annotation.web.http.EnableRedisHttpSession; |
| | | |
| | | import java.util.LinkedHashSet; |
| | | import java.util.Set; |
| | | |
| | |
| | | @EnableRedisHttpSession |
| | | @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class}) |
| | | @ComponentScan(basePackages = {"com.fzzy", "com.ruoyi", "com.ld"}) |
| | | |
| | | @MapperScan("com.fzzy.igds.mapper") |
| | | @MapperScan("com.fzzy.*.mapper") |
| | | @EntityScan(basePackages = {"com.fzzy.*.*.domain"}) |
| | | public class Application { |
| | | |