mirror of
				https://github.com/continew-org/continew-admin.git
				synced 2025-10-31 22:57:17 +08:00 
			
		
		
		
	chore: continew-starter 1.5.0-SNAPSHOT => 1.5.1-SNAPSHOT
This commit is contained in:
		
							
								
								
									
										29
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										29
									
								
								README.md
									
									
									
									
									
								
							| @@ -13,7 +13,7 @@ | ||||
| <img src="https://sonarcloud.io/api/project_badges/measure?project=Charles7c_continew-admin&metric=alert_status" alt="Sonar Status" /> | ||||
| </a> | ||||
| <a href="https://github.com/Charles7c/continew-starter" target="_blank"> | ||||
| <img src="https://img.shields.io/badge/ContiNew Starter-1.5.0-%236CB52D.svg" alt="ContiNew Starter" /> | ||||
| <img src="https://img.shields.io/badge/ContiNew Starter-1.5.1-%236CB52D.svg" alt="ContiNew Starter" /> | ||||
| </a> | ||||
| <a href="https://spring.io/projects/spring-boot" target="_blank"> | ||||
| <img src="https://img.shields.io/badge/Spring Boot-3.1.8-%236CB52D.svg?logo=Spring-Boot" alt="Spring Boot" /> | ||||
| @@ -230,8 +230,8 @@ git clone https://github.com/Charles7c/continew-admin.git | ||||
| ## 核心技术栈 | ||||
|  | ||||
| | 名称                                                         | 版本             | 简介                                                         | | ||||
| | :----------------------------------------------------------- |:-------------| :----------------------------------------------------------- | | ||||
| | [ContiNew Starter](https://github.com/Charles7c/continew-starter) | 1.5.0-SNAPSHOT       | ContiNew Starter 包含了一系列经过企业实践优化的依赖包(如 MyBatis-Plus、SaToken),可轻松集成到应用中,为开发人员减少手动引入依赖及配置的麻烦,为 Spring Boot Web 项目的灵活快速构建提供支持。 | | ||||
| | :----------------------------------------------------------- |:---------------| :----------------------------------------------------------- | | ||||
| | [ContiNew Starter](https://github.com/Charles7c/continew-starter) | 1.5.1-SNAPSHOT | ContiNew Starter 包含了一系列经过企业实践优化的依赖包(如 MyBatis-Plus、SaToken),可轻松集成到应用中,为开发人员减少手动引入依赖及配置的麻烦,为 Spring Boot Web 项目的灵活快速构建提供支持。 | | ||||
| | <a href="https://spring.io/projects/spring-boot" target="_blank">Spring Boot</a> | 3.1.8          | 简化 Spring 应用的初始搭建和开发过程,基于“约定优于配置”的理念,使开发人员不再需要定义样板化的配置。(Spring Boot 3.0 开始,要求 Java 17 作为最低版本) | | ||||
| | <a href="https://undertow.io/" target="_blank">Undertow</a>  | 2.3.10.Final   | 采用 Java 开发的灵活的高性能 Web 服务器,提供包括阻塞和基于 NIO 的非堵塞机制。 | | ||||
| | <a href="https://sa-token.dev33.cn/" target="_blank">Sa-Token + JWT</a> | 1.37.0         | 轻量级 Java 权限认证框架,让鉴权变得简单、优雅。             | | ||||
| @@ -329,21 +329,22 @@ continew-admin | ||||
| │  │  │     └─ mapper(系统管理相关 Mapper XML 文件目录) | ||||
| │  │  └─ test(测试相关代码目录) | ||||
| │  └─ pom.xml | ||||
| ├─ continew-admin-tool(系统工具模块,存放系统工具相关业务功能,例如:代码生成等) | ||||
| ├─ continew-admin-generator(代码生成器插件模块) | ||||
| │  ├─ src | ||||
| │  │  ├─ main | ||||
| │  │  │  ├─ java/top/charles7c/continew/admin/tool | ||||
| │  │  │  │  ├─ config(系统工具相关配置) | ||||
| │  │  │  │  ├─ enums(系统工具相关枚举) | ||||
| │  │  │  │  ├─ mapper(系统工具相关 Mapper) | ||||
| │  │  │  │  ├─ model(系统工具相关模型) | ||||
| │  │  │  │  │  ├─ entity(系统工具相关实体对象) | ||||
| │  │  │  │  │  ├─ query(系统工具相关查询条件) | ||||
| │  │  │  │  │  ├─ req(系统工具相关请求对象(Request)) | ||||
| │  │  │  │  │  └─ resp(系统工具相关响应对象(Response)) | ||||
| │  │  │  │  └─ service(系统工具相关业务接口及实现类) | ||||
| │  │  │  ├─ java/top/charles7c/continew/admin/generator | ||||
| │  │  │  │  ├─ config(代码生成器相关配置) | ||||
| │  │  │  │  ├─ enums(代码生成器相关枚举) | ||||
| │  │  │  │  ├─ mapper(代码生成器相关 Mapper) | ||||
| │  │  │  │  ├─ model(代码生成器相关模型) | ||||
| │  │  │  │  │  ├─ entity(代码生成器相关实体对象) | ||||
| │  │  │  │  │  ├─ query(代码生成器相关查询条件) | ||||
| │  │  │  │  │  ├─ req(代码生成器相关请求对象(Request)) | ||||
| │  │  │  │  │  └─ resp(代码生成器相关响应对象(Response)) | ||||
| │  │  │  │  └─ service(代码生成器相关业务接口及实现类) | ||||
| │  │  │  └─ resources | ||||
| │  │  │     ├─ templates/generator(代码生成相关模板目录) | ||||
| │  │  │     ├─ application.yml(代码生成配置文件) | ||||
| │  │  │     └─ generator.properties(代码生成类型映射配置文件) | ||||
| │  │  └─ test(测试相关代码目录) | ||||
| │  └─ pom.xml | ||||
|   | ||||
| @@ -5,5 +5,5 @@ | ||||
|   \____|\___/ |_| |_| \__||_||_| \_| \___|  \_/\_/       /_/   \_\\__,_||_| |_| |_||_||_| |_| | ||||
|  | ||||
|  :: ${project.name}   ::                                               v${project.version} | ||||
|  :: ContiNew Starter ::                                               v1.5.0-SNAPSHOT | ||||
|  :: ContiNew Starter ::                                               v1.5.1-SNAPSHOT | ||||
|  :: Spring Boot      ::                                               v${spring-boot.version} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user