验证字符串是否为正数,null/empty 字符串
Validating a string for a positive number, null/empty string
我有一个接受字符串 clientid
并且具有以下要求的方法:
clientid
可以是大于零的正数。但如果它是负数或零,则抛出 IllegalArgumentException
和一条消息。
clientid
不能是 null
或空字符串。但如果是,则抛出 IllegalArgumentException
消息。
clientid
也可以是普通字符串。例如 - 它可以是 abcdefgh
或任何其他字符串。
import static com.google.common.base.Preconditions.checkArgument;
public Builder setClientId(String clientid) {
checkArgument(!Strings.isNullOrEmpty(clientid), "clientid cannot not be null or an empty string, found '%s'.",
clientid);
final Long id = Longs.tryParse(clientid);
if (id != null) {
checkArgument(id.longValue() > 0, "clientid must not be negative or zero, found '%s'.", clientid);
}
this.clientid = clientid;
return this;
}
这段代码工作正常。现在的问题是,我不能使用高于版本 11 的番石榴库。如果我确实使用它,那么它会给我们使用这个库的客户带来问题所以简而言之,我正在寻找替代这一行 final Long id = Longs.tryParse(clientid);
而不使用guava 或可能与旧的 guava 版本 11 一起使用。因为 Longs.tryParse
方法是在 Guava 14 或更高版本中添加的。
最好的方法是什么?我们可以从 Apache Commons 使用什么?
有点难看,但解决了你的问题,因为它不需要任何库
try {
final long id = Long.parseLong(clientId);
checkArgument(id > 0, "clientid must not be negative or zero, found '%s'.", clientid);
} catch (NumberFormatException e) {}
我建议使用 Apache Maven Shade Plugin by relocating classes 重新打包 Guava。简而言之,您可以将 Guava 中的包重命名为 com.example.mypackage.com.google.common
之类的名称,然后在您的项目中使用它们。
这样您就可以使用最新版本的 Guava,而不会为您的客户造成依赖性冲突。
这是一个基于 jersey-repackaged-guava
:
的示例 POM
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example.mypackage</groupId>
<artifactId>repackged-guava-example</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<inherited>true</inherited>
<configuration>
<minimizeJar>false</minimizeJar>
<createSourcesJar>true</createSourcesJar>
<shadeSourcesContent>true</shadeSourcesContent>
<artifactSet>
<includes>
<include>com.google.guava:guava:*</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>com.google.common</pattern>
<shadedPattern>${repackaged.prefix}.com.google.common</shadedPattern>
</relocation>
<relocation>
<pattern>com.google.thirdparty</pattern>
<shadedPattern>${repackaged.prefix}.com.google.thirdparty</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>19.0</version>
<optional>true</optional>
</dependency>
</dependencies>
<properties>
<repackaged.prefix>com.example.mypackage</repackaged.prefix>
</properties>
</project>
然后依赖 repackged-guava-example
并更改您的导入:
import com.example.mypackage.com.google.common.primitives.Longs;
请注意,如果您在带有 IDE 的多模块项目中使用它,您需要配置 IDE 以忽略重新打包模块的目标 类(例如,请参阅https://youtrack.jetbrains.com/issue/IDEA-126596)。否则,您的 IDE 将使用带有原始包名称的原始 类,而不是重新打包的名称。
我有一个接受字符串 clientid
并且具有以下要求的方法:
clientid
可以是大于零的正数。但如果它是负数或零,则抛出IllegalArgumentException
和一条消息。clientid
不能是null
或空字符串。但如果是,则抛出IllegalArgumentException
消息。clientid
也可以是普通字符串。例如 - 它可以是abcdefgh
或任何其他字符串。
import static com.google.common.base.Preconditions.checkArgument;
public Builder setClientId(String clientid) {
checkArgument(!Strings.isNullOrEmpty(clientid), "clientid cannot not be null or an empty string, found '%s'.",
clientid);
final Long id = Longs.tryParse(clientid);
if (id != null) {
checkArgument(id.longValue() > 0, "clientid must not be negative or zero, found '%s'.", clientid);
}
this.clientid = clientid;
return this;
}
这段代码工作正常。现在的问题是,我不能使用高于版本 11 的番石榴库。如果我确实使用它,那么它会给我们使用这个库的客户带来问题所以简而言之,我正在寻找替代这一行 final Long id = Longs.tryParse(clientid);
而不使用guava 或可能与旧的 guava 版本 11 一起使用。因为 Longs.tryParse
方法是在 Guava 14 或更高版本中添加的。
最好的方法是什么?我们可以从 Apache Commons 使用什么?
有点难看,但解决了你的问题,因为它不需要任何库
try {
final long id = Long.parseLong(clientId);
checkArgument(id > 0, "clientid must not be negative or zero, found '%s'.", clientid);
} catch (NumberFormatException e) {}
我建议使用 Apache Maven Shade Plugin by relocating classes 重新打包 Guava。简而言之,您可以将 Guava 中的包重命名为 com.example.mypackage.com.google.common
之类的名称,然后在您的项目中使用它们。
这样您就可以使用最新版本的 Guava,而不会为您的客户造成依赖性冲突。
这是一个基于 jersey-repackaged-guava
:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example.mypackage</groupId>
<artifactId>repackged-guava-example</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<inherited>true</inherited>
<configuration>
<minimizeJar>false</minimizeJar>
<createSourcesJar>true</createSourcesJar>
<shadeSourcesContent>true</shadeSourcesContent>
<artifactSet>
<includes>
<include>com.google.guava:guava:*</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>com.google.common</pattern>
<shadedPattern>${repackaged.prefix}.com.google.common</shadedPattern>
</relocation>
<relocation>
<pattern>com.google.thirdparty</pattern>
<shadedPattern>${repackaged.prefix}.com.google.thirdparty</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>19.0</version>
<optional>true</optional>
</dependency>
</dependencies>
<properties>
<repackaged.prefix>com.example.mypackage</repackaged.prefix>
</properties>
</project>
然后依赖 repackged-guava-example
并更改您的导入:
import com.example.mypackage.com.google.common.primitives.Longs;
请注意,如果您在带有 IDE 的多模块项目中使用它,您需要配置 IDE 以忽略重新打包模块的目标 类(例如,请参阅https://youtrack.jetbrains.com/issue/IDEA-126596)。否则,您的 IDE 将使用带有原始包名称的原始 类,而不是重新打包的名称。