Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix issue #195: @Reference check=false不生效 #3530

Merged
merged 3 commits into from
Feb 24, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix unit test
beiwei30 committed Feb 22, 2019
commit cbc49fd6566a62ddf2fb00c0429848e09c056824
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@ public abstract class AbstractReferenceConfig extends AbstractInterfaceConfig {
/**
* Whether to find reference's instance from the current JVM
*/
protected Boolean injvm = true;
protected Boolean injvm = false;

/**
* Lazy create connection
Original file line number Diff line number Diff line change
@@ -71,9 +71,9 @@
boolean generic() default false;

/**
* When enable, prefer to call local service in the same JVM if it's present, default value is true
* When enable, prefer to call local service in the same JVM if it's present, default value is false
*/
boolean injvm() default true;
boolean injvm() default false;

/**
* Check if service provider is available during boot up, default value is true