分享程序网
首页
  • java
微服务
微前端
环境搭建
数据库
设计模式
算法
软件
解决问题
链接
首页
  • java
微服务
微前端
环境搭建
数据库
设计模式
算法
软件
解决问题
链接
  • 微服务

    • 介绍
  • 微服务搭建

    • 初步搭建
  • 服务发现

    • Eureka
    • nacos
  • 网关

    • zuul
    • 网关配置
    • 过滤器
    • 动态加载
  • 认证(Oauth)

    • 初始化项目
    • Oauth2配置
    • 对外接口
  • 通用服务

    • 通用功能父模块
    • redis
  • 任务调度

    • 任务调度服务
    • xxl-job示例
  • 业务服务

    • 业务设计

通用功能父模块

只需要配置管理子模块即可

<project xmlns="http://maven.apache.org/POM/4.0.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	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>com.shareprog</groupId>
		<artifactId>shareprog-pom</artifactId>
		<version>1.0.0</version>
	</parent>
	<artifactId>shareprog-common</artifactId>
	<packaging>pom</packaging>
	<name>通用模块</name>
	<description>通用模块</description>
	<modules>
		<module>shareprog-common-log</module>
		<module>shareprog-common-core</module>
		<module>shareprog-common-feign</module>
		<module>shareprog-common-redis</module>
		<module>shareprog-common-datasource</module>
	</modules>
</project>
Last Updated:
Contributors: clcheng
Next
redis