Commit 4892a24c by henry

修改配置文件

1 parent f561a005
......@@ -11,7 +11,6 @@
<artifactId>arch-base</artifactId>
<version>1.0-SNAPSHOT</version>
<groupId>org.arch.base</groupId>
<name>基础功能公共服务</name>
<properties>
<maven.compiler.source>8</maven.compiler.source>
......
......@@ -4,14 +4,13 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.arch.clouds</groupId>
<groupId>org.arch</groupId>
<artifactId>arch-clouds</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<version>1.0-SNAPSHOT</version>
<name>文件存储</name>
<artifactId>attach</artifactId>
<groupId>org.arch.attach</groupId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
......
......@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.arch.clouds</groupId>
<groupId>org.arch</groupId>
<artifactId>arch-clouds</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
......@@ -12,7 +12,6 @@
<version>1.0-SNAPSHOT</version>
<name>日志模块</name>
<artifactId>log</artifactId>
<groupId>org.arch.log</groupId>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
......
......@@ -4,14 +4,13 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.arch.clouds</groupId>
<groupId>org.arch</groupId>
<artifactId>arch-clouds</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>mybatis</artifactId>
<groupId>org.arch.mybatis</groupId>
<name>mybatis组件</name>
<properties>
<maven.compiler.source>8</maven.compiler.source>
......
......@@ -4,13 +4,12 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.arch.clouds</groupId>
<groupId>org.arch</groupId>
<artifactId>arch-clouds</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>nacos</artifactId>
<groupId>org.arch.nacos</groupId>
<name>注册中心</name>
<properties>
<maven.compiler.source>8</maven.compiler.source>
......
......@@ -4,13 +4,11 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.arch.clouds</groupId>
<groupId>org.arch</groupId>
<artifactId>arch-clouds</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>office</artifactId>
<groupId>org.arch.office</groupId>
<name>在线文档</name>
<properties>
<maven.compiler.source>8</maven.compiler.source>
......
......@@ -11,7 +11,6 @@
<name>微服务组件</name>
<packaging>pom</packaging>
<artifactId>arch-clouds</artifactId>
<groupId>org.arch.clouds</groupId>
<modules>
<module>log</module>
<module>office</module>
......
......@@ -38,7 +38,7 @@
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
<dependency>
<groupId>org.arch.nacos</groupId>
<groupId>org.arch</groupId>
<artifactId>nacos</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
......
......@@ -22,18 +22,18 @@
<artifactId>mybatis-plus-generator-ui</artifactId>
</dependency>
<dependency>
<groupId>org.arch.log</groupId>
<groupId>org.arch</groupId>
<artifactId>log</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.arch.nacos</groupId>
<groupId>org.arch</groupId>
<artifactId>nacos</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.arch.base</groupId>
<groupId>org.arch</groupId>
<artifactId>arch-base</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
......
package org.arch.modules;
import org.dromara.x.file.storage.spring.EnableFileStorage;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.transaction.annotation.EnableTransactionManagement;
@SpringBootApplication
@EnableDiscoveryClient
@EnableTransactionManagement
@EnableFileStorage
public class ArchOverallApp {
public static void main(String[] args) {
SpringApplication.run(ArchOverallApp.class, args);
......
......@@ -4,11 +4,13 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import java.util.List;
@EqualsAndHashCode(callSuper = true)
@Data
@NoArgsConstructor
@ApiModel(value = "元素模块查询的传输对象", description = "元素模块查询的传输对象")
public class ArchiElementDTO extends BasePageEntity {
......
......@@ -22,6 +22,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import javax.annotation.Resource;
import java.util.Date;
import java.util.List;
import java.util.Objects;
......@@ -29,9 +30,9 @@ import java.util.Objects;
@Service
public class ArchiElementImpl extends ServiceImpl<ArchiElementMapper, ArchiElement> implements ArchiElementService {
@Autowired
@Resource
private ArchiElementMapper archiElementMapper;
@Autowired
@Resource
private ArchiElePropertyMapper archiElePropertyMapper;
@Autowired
public IPage<ArchiElement> gtArchiElement(ArchiElementDTO dto) {
......
......@@ -6293,3 +6293,48 @@ Action:
Consider defining a bean of type 'org.arch.modules.design.dto.ArchiElementDTO' in your configuration.
2024-07-02 20:09:44 [main] ERROR o.s.b.diagnostics.LoggingFailureAnalysisReporter:40 -
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of method gtArchiElement in org.arch.modules.design.service.impl.ArchiElementImpl required a bean of type 'org.arch.modules.design.dto.ArchiElementDTO' that could not be found.
Action:
Consider defining a bean of type 'org.arch.modules.design.dto.ArchiElementDTO' in your configuration.
2024-07-02 20:10:28 [main] ERROR o.s.b.diagnostics.LoggingFailureAnalysisReporter:40 -
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of method gtArchiElement in org.arch.modules.design.service.impl.ArchiElementImpl required a bean of type 'org.arch.modules.design.dto.ArchiElementDTO' that could not be found.
Action:
Consider defining a bean of type 'org.arch.modules.design.dto.ArchiElementDTO' in your configuration.
2024-07-02 20:11:25 [main] ERROR o.s.b.diagnostics.LoggingFailureAnalysisReporter:40 -
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of method gtArchiElement in org.arch.modules.design.service.impl.ArchiElementImpl required a bean of type 'org.arch.modules.design.dto.ArchiElementDTO' that could not be found.
Action:
Consider defining a bean of type 'org.arch.modules.design.dto.ArchiElementDTO' in your configuration.
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!