feat(支持springboot3): 支持springboot3框架

This commit is contained in:
zhuangpeng.li
2025-04-27 17:56:52 +08:00
parent 5b6ec185c4
commit 4d8e1c5167
156 changed files with 528 additions and 549 deletions

View File

@@ -33,6 +33,7 @@
<groupId>com.fastbee</groupId>
<artifactId>fastbee-common</artifactId>
</dependency>
<dependency>
<groupId>com.fastbee</groupId>
<artifactId>fastbee-framework</artifactId>

View File

@@ -4,7 +4,7 @@ import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletResponse;
import jakarta.servlet.http.HttpServletResponse;
import com.fastbee.common.core.page.PageDomain;
import com.fastbee.common.core.page.TableSupport;
@@ -36,7 +36,7 @@ import com.fastbee.generator.service.IGenTableService;
/**
* 代码生成 操作处理
*
*
* @author ruoyi
*/
@Api(tags = "代码生成模块")
@@ -238,4 +238,4 @@ public class GenController extends BaseController
public AjaxResult getCurrentDataSourceNameList() {
return success(DataBaseHelper.getDataSourceNameList());
}
}
}

View File

@@ -1,8 +1,8 @@
package com.fastbee.generator.domain;
import java.util.List;
import javax.validation.Valid;
import javax.validation.constraints.NotBlank;
import jakarta.validation.Valid;
import jakarta.validation.constraints.NotBlank;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
@@ -16,7 +16,7 @@ import com.fastbee.common.utils.StringUtils;
/**
* 业务表 gen_table
*
*
* @author ruoyi
*/
@ApiModel(value = "GenTable", description = "业务表 gen_table")
@@ -431,4 +431,4 @@ public class GenTable extends BaseEntity
public void setDataName(String dataName) {
this.dataName = dataName;
}
}
}

View File

@@ -1,6 +1,6 @@
package com.fastbee.generator.domain;
import javax.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotBlank;
import com.fastbee.common.core.domain.BaseEntity;
import com.fastbee.common.utils.StringUtils;
import io.swagger.annotations.ApiModel;
@@ -8,7 +8,7 @@ import io.swagger.annotations.ApiModelProperty;
/**
* 代码生成业务字段表 gen_table_column
*
*
* @author ruoyi
*/
@ApiModel(value = "GenTableColumn", description = "代码生成业务字段表 gen_table_column")

View File

@@ -48,11 +48,11 @@ import com.fastbee.generator.util.GenUtils;
import com.fastbee.generator.util.VelocityInitializer;
import com.fastbee.generator.util.VelocityUtils;
import javax.annotation.Resource;
import jakarta.annotation.Resource;
/**
* 业务 服务层实现
*
*
* @author ruoyi
*/
@Service
@@ -73,7 +73,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 查询业务信息
*
*
* @param id 业务ID
* @return 业务信息
*/
@@ -87,7 +87,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 查询业务列表
*
*
* @param genTable 业务信息
* @return 业务集合
*/
@@ -99,7 +99,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 查询据库列表
*
*
* @param genTable 业务信息
* @return 数据库表集合
*/
@@ -162,7 +162,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 查询据库列表
*
*
* @param tableNames 表名称组
* @return 数据库表集合
*/
@@ -197,7 +197,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 查询所有表信息
*
*
* @return 表信息集合
*/
@Override
@@ -208,7 +208,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 修改业务
*
*
* @param genTable 业务信息
* @return 结果
*/
@@ -230,7 +230,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 删除业务对象
*
*
* @param tableIds 需要删除的数据ID
* @return 结果
*/
@@ -244,7 +244,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 导入表结构
*
*
* @param tableList 导入表列表
*/
@Override
@@ -303,7 +303,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 预览代码
*
*
* @param tableId 表编号
* @return 预览数据列表
*/
@@ -342,7 +342,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 生成代码(下载方式)
*
*
* @param tableName 表名称
* @return 数据
*/
@@ -358,7 +358,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 生成代码(自定义路径)
*
*
* @param tableName 表名称
*/
@Override
@@ -400,7 +400,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 同步数据库
*
*
* @param tableName 表名称
*/
@Override
@@ -455,7 +455,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 批量生成代码(下载方式)
*
*
* @param tableNames 表数组
* @return 数据
*/
@@ -514,7 +514,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 修改保存参数校验
*
*
* @param genTable 业务信息
*/
@Override
@@ -552,7 +552,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 设置主键列信息
*
*
* @param table 业务表信息
*/
public void setPkColumn(GenTable table)
@@ -588,7 +588,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 设置主子表信息
*
*
* @param table 业务表信息
*/
public void setSubTable(GenTable table)
@@ -602,7 +602,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 设置代码生成其他选项值
*
*
* @param genTable 设置后的生成对象
*/
public void setTableFromOptions(GenTable genTable)
@@ -626,7 +626,7 @@ public class GenTableServiceImpl implements IGenTableService
/**
* 获取代码生成地址
*
*
* @param table 业务表信息
* @param template 模板文件路径
* @return 生成地址
@@ -640,4 +640,4 @@ public class GenTableServiceImpl implements IGenTableService
}
return genPath + File.separator + VelocityUtils.getFileName(template, table);
}
}
}

View File

@@ -1,7 +1,7 @@
package ${packageName}.controller;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import jakarta.servlet.http.HttpServletResponse;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
@@ -26,7 +26,7 @@ import com.fastbee.common.core.page.TableDataInfo;
/**
* ${functionName}Controller
*
*
* @author ${author}
* @date ${datetime}
*/