文件名从 wgcloud-server/src/main/java/com/wgcloud/WgcloudServiceApplication.java 修改 |
| | |
| | | package com.wgcloud; |
| | | package se.wgcloud; |
| | | |
| | | import org.mybatis.spring.annotation.MapperScan; |
| | | import org.springframework.boot.SpringApplication; |
| | |
| | | |
| | | import java.nio.charset.Charset; |
| | | |
| | | @SpringBootApplication |
| | | @MapperScan("com.wgcloud.mapper") |
| | | @ServletComponentScan("com.wgcloud.filter") |
| | | @ComponentScan(basePackages = "com.wgcloud") |
| | | @EnableCaching |
| | | @EnableScheduling |
| | | public class WgcloudServiceApplication { |
| | | @MapperScan("se.wgcloud.mapper") |
| | | @ServletComponentScan("se.wgcloud.filter") |
| | | @SpringBootApplication(scanBasePackages = {"se.wgcloud.*"}) |
| | | public class SeServiceApplication { |
| | | public static void main(String[] args) { |
| | | SpringApplication.run(WgcloudServiceApplication.class, args); |
| | | SpringApplication.run(SeServiceApplication.class, args); |
| | | } |
| | | |
| | | @Bean |