Skip to content

Commit

Permalink
concept router 1.1.0
Browse files Browse the repository at this point in the history
非 Spring Cloud 项目引入报错的问题
  • Loading branch information
tanghanzheng committed Jun 1, 2023
1 parent 1775c5f commit 94797f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
@Documented
@ConditionalOnClass(Registration.class)
@ConditionalOnClass(name = "org.springframework.cloud.client.serviceregistry.Registration")
@ConditionalOnProperty(name = "concept.router.enabled", havingValue = "true", matchIfMissing = true)
public @interface ConditionalOnRouterEnabled {
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

public class RouterVersion {

public static final String NAME = "v1.0.0";
public static final String NAME = "v1.1.0";
}

0 comments on commit 94797f2

Please sign in to comment.