refactor: 项目结构调整

This commit is contained in:
haoxr
2023-03-08 23:55:32 +08:00
parent 9a1c1088f1
commit e23bce488e
3 changed files with 21 additions and 1 deletions

20
k8s/ingress.yaml Normal file
View File

@@ -0,0 +1,20 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: test
namespace: youlai-bootnfckx
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
spec:
ingressClassName: nginx # 关联的ingress-nginx控制器
rules:
- host: boot.youlai.tech
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: youlai-boot
port:
number: 8989

View File

@@ -1,4 +1,4 @@
package com.youlai.system.common.annotation;
package com.youlai.system.framework.mybatisplus;
import java.lang.annotation.*;