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 MavenReportException problem #2776

Merged
merged 4 commits into from
Sep 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

/**
* @author ChengPu raozihao
* @description
* @date 2022/8/15
*/
public final class Constants {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
/**
* Example of extended configuration. When a configuration in the shared configuration
* does not meet the requirements, the extended configuration can be used to override the
* shared configuration. Priority: Main Configuration > Extended Configuration > Shared
* Configuration.
* shared configuration. Priority: Main Configuration > Extended Configuration >
* Shared Configuration.
*
* @author lixiaoshuang
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@

/**
* @author ChengPu raozihao
* @description
* @date 2022/8/15
*/
@ConfigurationProperties("spring.cloud.appactive.filter")
public class AppactiveProperties {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@

/**
* @author ChengPu raozihao
* @description
* @date 2022/8/15
*/
@Configuration
public class FilterAutoConfiguration {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@

/**
* @author ChengPu raozihao
* @description
* @date 2022/8/15
*/
@Configuration
public class FilterPropertiesAutoConfiguration {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@

/**
* @author ChengPu raozihao
* @description
* @date 2022/8/20
*/
public class AppactivePredicate extends AbstractServerPredicate {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@
import com.netflix.loadbalancer.PredicateBasedRule;

/**
* @description
* @author ChengPu raozihao
* @date 2022/8/21
*/
public class AppactiveRule extends PredicateBasedRule {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
/**
* Nacos-specific loader, If need to support other methods of parsing,you need to do the
* following steps:
* <p>
* 1.inherit {@link AbstractPropertySourceLoader} ;<br/>
* 2. define the file{@code spring.factories} and append
* {@code org.springframework.boot.env.PropertySourceLoader=..}; <br/>
* 3.the last step validate.
* </p>
* <ul>
* <li>1.inherit {@link AbstractPropertySourceLoader} ;</li>
* <li>2. define the file{@code spring.factories} and append
* {@code org.springframework.boot.env.PropertySourceLoader=..};</li>
* <li>3.the last step validate.</li>
* </ul>
* Notice the use of {@link NacosByteArrayResource} .
*
* @author zkz
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ protected List<PropertySource<?>> doLoad(String name, Resource resource)

/**
* Reload the key ending in `value` if need.
* @param map the map parameter
*/
protected Map<String, Object> reloadMap(Map<String, Object> map) {
if (map == null || map.isEmpty()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
/**
* Parsing for XML requires overwriting the default
* {@link PropertiesPropertySourceLoader}, because it internally rigorously validates
* ({@conde DOCTYPE}) THE XML in a way that makes it difficult to customize the
* THE XML in a way that makes it difficult to customize the
* configuration; at finally, make sure it's in the first place.
*
* @author zkz
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ public class RocketMQConsumerProperties extends RocketMQCommonProperties {

/**
* The expressions include tags or SQL,as follow:
* <p/>
* <p>
* tag: {@code tag1||tag2||tag3 }; sql: {@code 'color'='blue' AND 'price'>100 } .
* <p/>
* </p>
* Determines whether there are specific characters "{@code ||}" in the expression to
* determine how the message is filtered,tags or SQL.
*/
Expand Down