1. 替换原始 code 签名

2. 服务与模块生成器,支持指定起始端口批量端口分配
This commit is contained in:
chenbowen
2025-09-02 10:15:16 +08:00
parent 287f4bbd7e
commit e99da38fd4
778 changed files with 876 additions and 801 deletions

View File

@@ -10,7 +10,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
* 如果你碰到启动的问题,请认真阅读 http://172.16.46.63:30888/quick-start/ 文章
* 如果你碰到启动的问题,请认真阅读 http://172.16.46.63:30888/quick-start/ 文章
*
* @author 芋道源码
* @author ZT
*/
@SpringBootApplication
public class ReportServerApplication {

View File

@@ -12,7 +12,7 @@ import lombok.*;
*
* 每个大屏图标,对应一个项目
*
* @author 芋道源码
* @author ZT
*/
@TableName(value = "report_go_view_project", autoResultMap = true) // 由于 SQL Server 的 system_user 是关键字,所以使用 system_users
@KeySequence("report_go_view_project_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。

View File

@@ -15,7 +15,7 @@ import org.springframework.context.annotation.Primary;
/**
* 积木报表的配置类
*
* @author 芋道源码
* @author ZT
*/
@Configuration(proxyBeanMethods = false)
@ComponentScan(basePackages = "org.jeecg.modules.jmreport") // 扫描积木报表的包

View File

@@ -16,7 +16,7 @@ import java.util.Map;
* 1. <a href="https://github.com/jeecgboot/jimureport/blob/master/jimureport-example/src/main/java/com/jeecg/modules/jmreport/extend/JimuDragExternalServiceImpl.java">jimureport-example</a>
* 2. <a href="https://gitee.com/jeecg/JeecgBoot/blob/master/jeecg-boot/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/config/jimureport/JimuDragExternalServiceImpl.java">JeecgBoot 集成</a>
*
* @author 芋道源码
* @author ZT
*/
@RequiredArgsConstructor
public class JmOnlDragExternalServiceImpl implements IOnlDragExternalService {

View File

@@ -1,6 +1,6 @@
/**
* 属于 report 模块的 framework 封装
*
* @author 芋道源码
* @author ZT
*/
package cn.iocoder.yudao.module.report.framework;

View File

@@ -5,7 +5,7 @@ import cn.iocoder.yudao.module.report.controller.admin.goview.vo.data.GoViewData
/**
* GoView 数据 Service 接口
*
* @author 芋道源码
* @author ZT
*/
public interface GoViewDataService {

View File

@@ -20,7 +20,7 @@ import java.util.Map;
* 1. 目前默认使用 jdbcTemplate 查询项目配置的数据源。如果你想查询其它数据源,可以新建对应数据源的 jdbcTemplate 来实现。
* 2. 默认数据源是 MySQL 关系数据源,可能数据量比较大的情况下,会比较慢,可以考虑后续使用 Click House 等等。
*
* @author 芋道源码
* @author ZT
*/
@Service
@Validated

View File

@@ -11,7 +11,7 @@ import jakarta.validation.Valid;
/**
* GoView 项目 Service 接口
*
* @author 芋道源码
* @author ZT
*/
public interface GoViewProjectService {

View File

@@ -19,7 +19,7 @@ import static cn.iocoder.yudao.module.report.enums.ErrorCodeConstants.GO_VIEW_PR
/**
* GoView 项目 Service 实现类
*
* @author 芋道源码
* @author ZT
*/
@Service
@Validated

View File

@@ -22,7 +22,7 @@ import static org.junit.jupiter.api.Assertions.*;
/**
* {@link GoViewProjectServiceImpl} 的单元测试类
*
* @author 芋道源码
* @author ZT
*/
@Import(GoViewProjectServiceImpl.class)
public class GoViewProjectServiceImplTest extends BaseDbUnitTest {