-
Updated
Dec 12, 2020 - Java
jax-rs
Here are 498 public repositories matching this topic...
-
Updated
Dec 12, 2020 - Java
-
Updated
Dec 10, 2020 - Java
-
Updated
Dec 10, 2020 - Java
-
Updated
Nov 15, 2020 - Java
-
Updated
May 21, 2018 - Java
-
Updated
Oct 13, 2020 - Java
-
Updated
Nov 20, 2020 - Java
-
Updated
Dec 8, 2020 - Java
-
Updated
Dec 12, 2020 - Java
-
Updated
Dec 9, 2020 - Kotlin
-
Updated
Feb 5, 2018 - Java
Describe the bug
List#contains performs a linear search, which could have performs implications if the list is large and called repeatedly.
To Reproduce
See code
Expected behavior
A performant implementation.
Additional context
Review usage to see if a HashSet would be more appropriate in this context.
-
Updated
Dec 26, 2018 - Java
-
Updated
Dec 13, 2019 - Java
-
Updated
Dec 9, 2020 - Java
-
Updated
Oct 13, 2020 - Java
-
Updated
Aug 12, 2020 - Java
-
Updated
Dec 2, 2020 - Java
opentracing-concurrent is used in tests therefore should be removed from opentracing-jaxrs2
-
Updated
Dec 9, 2020 - Java
-
Updated
Oct 24, 2020 - Java
-
Updated
Nov 22, 2017 - Java
Improve this page
Add a description, image, and links to the jax-rs topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the jax-rs topic, visit your repo's landing page and select "manage topics."


建议使用ConcurrentHashMap
eg:private final Map<Class, ObjectParamMetadata> classToMetadata = new ConcurrentHashMap, ObjectParamMetadata>();
此处s是否可