overview
项目介绍
架构层架构总览与核心模块
三层架构 + 四大核心模块采用经典分层架构,通过工作空间实现多租户隔离
架构总览与核心模块
三层架构 + 四大核心模块采用经典分层架构,通过工作空间实现多租户隔离
ys-pipeline 是一个研发流水线管理平台,帮助团队管理需求、任务、流程和自动化。它提供了灵活的工作项系统、强大的流程编排引擎、智能的自动化规则,以及丰富的集成能力。
应用入口 - Spring Boot 应用
@SpringBootApplication
@MapperScan("com.ys4fun.pipeline.**.mapper")
public class PipelineApplication {
public static void main(String[] args) {
SpringApplication.run(PipelineApplication.java, args);
}
}项目依赖 - Spring Boot 2.x + MyBatis-Plus
<dependencies>
<!-- Spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- MyBatis-Plus -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
</dependency>
<!-- MySQL -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
</dependencies>