Vincen Gao
Vincen Gao
Some traditional Chinese characters were changed to simplified Chinese
maven-git-versioning-extension ```xml me.qoomon maven-git-versioning-extension 9.7.0 ``` I want to disable maven-git-version-extension with the `-Dversioning.disable=true` configuration, but when using mvnd, the `-Dversioning.disable=true` configuration does not work. But with the mvn command,...
There are the following classes and code ```java public class Foo { public String bar(String arg) { return "bar: " + arg; } } public static void main(String[] args) throws...
User 就是validator-test中的User类,做了如下改动: //@HasNotNull({"nickName"}) private String name; @NotNull private String nickName; User user = new User(); IResult iResult = ValidHelper.failFast(user); //返回:{javax.validation.constraints.NotNull.message} String message = iResult.notPassList().get(0).message(); 返回是@NotNull的message信息,不是处理后的