Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in
Toggle navigation
T
tanpu-community
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
探普后端
tanpu-community
Commits
122f7254
Commit
122f7254
authored
Oct 18, 2021
by
刘基明
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v2.2.9' into dev
parents
7e248d69
bdad70dd
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
10 deletions
+10
-10
ApolloRefresherConfig.java
...ava/com/tanpu/community/config/ApolloRefresherConfig.java
+1
-1
FeignClientForActivity.java
...anpu/community/feign/activity/FeignClientForActivity.java
+1
-1
FeignClientForCommunity.java
...pu/community/feign/community/FeignClientForCommunity.java
+1
-1
FeignClientForCourse.java
...om/tanpu/community/feign/course/FeignClientForCourse.java
+1
-1
FeignClientForDiagnose.java
...anpu/community/feign/diagnose/FeignClientForDiagnose.java
+1
-1
FeignClientForFatools.java
.../tanpu/community/feign/fatools/FeignClientForFatools.java
+1
-1
FeignClientForProducts.java
...tanpu/community/feign/product/FeignClientForProducts.java
+1
-1
FeignForPublicFund.java
...com/tanpu/community/feign/product/FeignForPublicFund.java
+1
-1
FeignClientForTanpuroom.java
...pu/community/feign/tanpuroom/FeignClientForTanpuroom.java
+1
-1
FeignClientForZhibo.java
.../com/tanpu/community/feign/zhibo/FeignClientForZhibo.java
+1
-1
No files found.
community-service/src/main/java/com/tanpu/community/config/ApolloRefresherConfig.java
View file @
122f7254
...
@@ -33,7 +33,7 @@ public class ApolloRefresherConfig implements ApplicationContextAware {
...
@@ -33,7 +33,7 @@ public class ApolloRefresherConfig implements ApplicationContextAware {
this
.
applicationContext
=
applicationContext
;
this
.
applicationContext
=
applicationContext
;
}
}
@ApolloConfigChangeListener
(
value
=
{
"application.yml"
})
@ApolloConfigChangeListener
(
value
=
{
"
common"
,
"
application.yml"
})
public
void
onChange
(
ConfigChangeEvent
changeEvent
)
{
public
void
onChange
(
ConfigChangeEvent
changeEvent
)
{
refreshProperties
(
changeEvent
);
refreshProperties
(
changeEvent
);
}
}
...
...
community-service/src/main/java/com/tanpu/community/feign/activity/FeignClientForActivity.java
View file @
122f7254
...
@@ -10,7 +10,7 @@ import org.springframework.web.bind.annotation.RequestParam;
...
@@ -10,7 +10,7 @@ import org.springframework.web.bind.annotation.RequestParam;
import
java.util.List
;
import
java.util.List
;
@FeignClient
(
value
=
"service-jifen"
,
contextId
=
"jifen"
,
url
=
"${tanpu.jifen.svc:
http://tp-jifen-svc
}"
,
path
=
"/jifen"
)
@FeignClient
(
value
=
"service-jifen"
,
contextId
=
"jifen"
,
url
=
"${tanpu.jifen.svc:}"
,
path
=
"/jifen"
)
public
interface
FeignClientForActivity
{
public
interface
FeignClientForActivity
{
...
...
community-service/src/main/java/com/tanpu/community/feign/community/FeignClientForCommunity.java
View file @
122f7254
...
@@ -8,7 +8,7 @@ import org.springframework.web.bind.annotation.GetMapping;
...
@@ -8,7 +8,7 @@ import org.springframework.web.bind.annotation.GetMapping;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestParam
;
import
org.springframework.web.bind.annotation.RequestParam
;
@FeignClient
(
value
=
"service-community"
,
url
=
"${tanpu.community.svc:
http://tp-community-svc
}"
,
path
=
"/community"
)
@FeignClient
(
value
=
"service-community"
,
url
=
"${tanpu.community.svc:}"
,
path
=
"/community"
)
// @FeignClient(value = "service-community", contextId = "community", fallbackFactory = FeignBackClientForCommunity.class, url = "http://127.0.0.1:8202/community")
// @FeignClient(value = "service-community", contextId = "community", fallbackFactory = FeignBackClientForCommunity.class, url = "http://127.0.0.1:8202/community")
public
interface
FeignClientForCommunity
{
public
interface
FeignClientForCommunity
{
...
...
community-service/src/main/java/com/tanpu/community/feign/course/FeignClientForCourse.java
View file @
122f7254
...
@@ -13,7 +13,7 @@ import org.springframework.web.bind.annotation.RequestParam;
...
@@ -13,7 +13,7 @@ import org.springframework.web.bind.annotation.RequestParam;
import
java.util.List
;
import
java.util.List
;
@FeignClient
(
value
=
"service-course"
,
contextId
=
"course"
,
url
=
"${tanpu.course.svc:
http://tp-course-svc
}"
,
path
=
"/course"
)
@FeignClient
(
value
=
"service-course"
,
contextId
=
"course"
,
url
=
"${tanpu.course.svc:}"
,
path
=
"/course"
)
//@FeignClient(value = "service-course", contextId = "course", fallbackFactory = FeignBackClientForCourse.class, url = "http://172.20.1.249:8060/course")
//@FeignClient(value = "service-course", contextId = "course", fallbackFactory = FeignBackClientForCourse.class, url = "http://172.20.1.249:8060/course")
public
interface
FeignClientForCourse
{
public
interface
FeignClientForCourse
{
...
...
community-service/src/main/java/com/tanpu/community/feign/diagnose/FeignClientForDiagnose.java
View file @
122f7254
...
@@ -11,7 +11,7 @@ import org.springframework.web.bind.annotation.RequestParam;
...
@@ -11,7 +11,7 @@ import org.springframework.web.bind.annotation.RequestParam;
import
java.util.List
;
import
java.util.List
;
@FeignClient
(
value
=
"service-diagnose"
,
url
=
"${tanpu.diagnose.svc:
http://tp-diagnose-svc
}"
,
path
=
"/diagnose"
)
@FeignClient
(
value
=
"service-diagnose"
,
url
=
"${tanpu.diagnose.svc:}"
,
path
=
"/diagnose"
)
//@FeignClient(value = "service-diagnose", contextId = "diagnose", fallbackFactory = FeignBackClientForDiagnose.class, path = "http://172.20.1.249:8201/diagnose")
//@FeignClient(value = "service-diagnose", contextId = "diagnose", fallbackFactory = FeignBackClientForDiagnose.class, path = "http://172.20.1.249:8201/diagnose")
public
interface
FeignClientForDiagnose
{
public
interface
FeignClientForDiagnose
{
...
...
community-service/src/main/java/com/tanpu/community/feign/fatools/FeignClientForFatools.java
View file @
122f7254
...
@@ -19,7 +19,7 @@ import java.util.List;
...
@@ -19,7 +19,7 @@ import java.util.List;
import
java.util.Map
;
import
java.util.Map
;
import
java.util.Set
;
import
java.util.Set
;
@FeignClient
(
value
=
"fatools"
,
contextId
=
"fatools"
,
url
=
"${tanpu.fatools.svc:
http://tp-fatools-svc
}"
,
path
=
"/fatools"
)
@FeignClient
(
value
=
"fatools"
,
contextId
=
"fatools"
,
url
=
"${tanpu.fatools.svc:}"
,
path
=
"/fatools"
)
//@FeignClient(value = "fatools", contextId = "fatoolsUser", fallbackFactory = FeignbackForFatools.class, path = "/fatools")
//@FeignClient(value = "fatools", contextId = "fatoolsUser", fallbackFactory = FeignbackForFatools.class, path = "/fatools")
public
interface
FeignClientForFatools
{
public
interface
FeignClientForFatools
{
...
...
community-service/src/main/java/com/tanpu/community/feign/product/FeignClientForProducts.java
View file @
122f7254
...
@@ -11,7 +11,7 @@ import org.springframework.web.bind.annotation.RequestParam;
...
@@ -11,7 +11,7 @@ import org.springframework.web.bind.annotation.RequestParam;
import
java.util.List
;
import
java.util.List
;
@FeignClient
(
value
=
"service-product"
,
url
=
"${tanpu.product.svc:
http://tp-product-svc
}"
,
path
=
"/product"
)
@FeignClient
(
value
=
"service-product"
,
url
=
"${tanpu.product.svc:}"
,
path
=
"/product"
)
//@FeignClient(value = "service-product", contextId = "product", fallbackFactory = FeignBackClientForProducts.class, url = "http://172.20.0.68:8194/product")
//@FeignClient(value = "service-product", contextId = "product", fallbackFactory = FeignBackClientForProducts.class, url = "http://172.20.0.68:8194/product")
public
interface
FeignClientForProducts
{
public
interface
FeignClientForProducts
{
...
...
community-service/src/main/java/com/tanpu/community/feign/product/FeignForPublicFund.java
View file @
122f7254
...
@@ -11,7 +11,7 @@ import org.springframework.web.bind.annotation.RequestParam;
...
@@ -11,7 +11,7 @@ import org.springframework.web.bind.annotation.RequestParam;
import
java.util.List
;
import
java.util.List
;
@FeignClient
(
value
=
"service-fundpublic"
,
contextId
=
"fundpublic"
,
url
=
"${tanpu.fundpublic.svc:
http://tp-fundpublic-svc
}"
,
path
=
"/fundpublic"
)
@FeignClient
(
value
=
"service-fundpublic"
,
contextId
=
"fundpublic"
,
url
=
"${tanpu.fundpublic.svc:}"
,
path
=
"/fundpublic"
)
//@FeignClient(value = "service-fundpublic",path = "/fundpublic")
//@FeignClient(value = "service-fundpublic",path = "/fundpublic")
public
interface
FeignForPublicFund
{
public
interface
FeignForPublicFund
{
...
...
community-service/src/main/java/com/tanpu/community/feign/tanpuroom/FeignClientForTanpuroom.java
View file @
122f7254
...
@@ -13,7 +13,7 @@ import org.springframework.web.bind.annotation.RequestParam;
...
@@ -13,7 +13,7 @@ import org.springframework.web.bind.annotation.RequestParam;
import
java.util.List
;
import
java.util.List
;
@FeignClient
(
value
=
"service-tanpuroom"
,
url
=
"${tanpu.tanpuroom.svc:
http://tp-tanpuroom-svc
}"
,
path
=
"/tanpuroom"
)
@FeignClient
(
value
=
"service-tanpuroom"
,
url
=
"${tanpu.tanpuroom.svc:}"
,
path
=
"/tanpuroom"
)
//@FeignClient(value = "service-tanpuroom", contextId = "tanpuroom", fallbackFactory = FeignBackClientForTanpuroom.class, url = "http://172.20.0.183:8086/tanpuroom")
//@FeignClient(value = "service-tanpuroom", contextId = "tanpuroom", fallbackFactory = FeignBackClientForTanpuroom.class, url = "http://172.20.0.183:8086/tanpuroom")
public
interface
FeignClientForTanpuroom
{
public
interface
FeignClientForTanpuroom
{
...
...
community-service/src/main/java/com/tanpu/community/feign/zhibo/FeignClientForZhibo.java
View file @
122f7254
...
@@ -13,7 +13,7 @@ import org.springframework.web.bind.annotation.RequestBody;
...
@@ -13,7 +13,7 @@ import org.springframework.web.bind.annotation.RequestBody;
import
java.util.List
;
import
java.util.List
;
@FeignClient
(
value
=
"service-zhibo"
,
url
=
"${tanpu.feo-zhibo.svc:
http://tp-zhibo-svc
}"
,
path
=
"/zhibo"
)
@FeignClient
(
value
=
"service-zhibo"
,
url
=
"${tanpu.feo-zhibo.svc:}"
,
path
=
"/zhibo"
)
//@FeignClient(value = "service-zhibo", fallbackFactory = FeignbackForZhibo.class, url = "http://172.20.0.169:8183/zhibo")
//@FeignClient(value = "service-zhibo", fallbackFactory = FeignbackForZhibo.class, url = "http://172.20.0.169:8183/zhibo")
public
interface
FeignClientForZhibo
{
public
interface
FeignClientForZhibo
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment