refactor(server): 更新bootstrap.yml配置并优化ConnectorController接口
- 注释更新,反映Nacos地址和Spring框架ID。 - 在ConnectorController中添加新接口findApiById,优化API小卡片列表接口。 - 更新ConnectorMapper,添加findApiById方法。 - 在ConnectorMappers.xml中添加对应的SQL查询。 - 更新ConnectorService接口,添加findApiById方法。 - 在ConnectorServiceImpl中实现findApiById方法。 -调整MarketController中的接口,规范化请求映射。 feat(server): 添加Mart相关组件 - 创建MartController,MartMapper,MartService及其实现类MartServiceImpl。 - 在pom.xml中添加cloud-modules-system依赖。- 在mapper目录下添加MartUserMapper.xml文件。 - 在src/main/java/com/muyu/cloud/mart/domain/pojo下创建User.java。 BREAKING CHANGE: 在bootstrap.yml中修改Nacos地址和Spring ID注释可能导致环境特定配置发生变化。请检查这些更改并根据需要调整环境配置。master
parent
f16e4f5cea
commit
a986c0fb35
|
@ -21,10 +21,6 @@
|
|||
<dependencies>
|
||||
|
||||
|
||||
<dependency>
|
||||
<groupId>com.muyu</groupId>
|
||||
<artifactId>cloud-modules-system</artifactId>
|
||||
</dependency>
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package com.muyu.cloud.mart.controller;
|
||||
|
||||
//import com.muyu.system.service.SysUserService;
|
||||
import com.alipay.api.AlipayApiException;
|
||||
|
||||
import com.muyu.cloud.mart.service.MartService;
|
||||
import com.muyu.common.core.domain.Result;
|
||||
import com.muyu.common.core.web.page.TableDataInfo;
|
||||
|
|
|
@ -8,7 +8,7 @@ nacos:
|
|||
user-name: nacos
|
||||
password: nacos
|
||||
namespace: cloud-2112
|
||||
# Spring a72d4b95-5f82-4ada-87e0-0cc42053ea39
|
||||
# Spring a72d4b95-5f82-4ada-87e0-0cc42053ea39
|
||||
spring:
|
||||
|
||||
application:
|
||||
|
|
Loading…
Reference in New Issue