Cloud demo 命名让人误解,改名为example

pull/2246/head
zhangdaiscott 2021-01-25 12:31:42 +08:00
parent 3792f46388
commit 18fc7b146a
14 changed files with 7 additions and 6 deletions

View File

@ -8,8 +8,8 @@
<version>2.4.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jeecg-cloud-demo</artifactId>
<description>jeecg-cloud-demo示例模块</description>
<artifactId>jeecg-cloud-example</artifactId>
<description>jeecg-cloud-example 微服务测试例子</description>
<dependencies>
<!-- 引入jeecg-boot-starter-cloud依赖-->
<dependency>

View File

@ -9,9 +9,9 @@ import org.springframework.scheduling.annotation.EnableScheduling;
@EnableScheduling
@EnableFeignClients(basePackages = {"org.jeecg"})
@SpringBootApplication(scanBasePackages = "org.jeecg")
public class JeecgCloudDemoApplication {
public class JeecgCloudExampleApplication {
public static void main(String[] args) {
SpringApplication.run(JeecgCloudDemoApplication.class, args);
SpringApplication.run(JeecgCloudExampleApplication.class, args);
}
}

View File

@ -17,7 +17,7 @@ import java.util.List;
*
*/
@Slf4j
@Api(tags = "jeecg-cloud-demo")
@Api(tags = "jeecg-demo")
@RestController
@RequestMapping("/test")
public class JeecgDemoController {

View File

@ -16,7 +16,8 @@
<module>jeecg-cloud-gateway</module>
<module>jeecg-cloud-monitor</module>
<module>jeecg-cloud-xxljob</module>
<module>jeecg-cloud-demo</module>
<!-- 微服务测试学习例子
<module>jeecg-cloud-example</module>-->
</modules>