Explain Codes LogoExplain Codes Logo

Java

How to call getClass() from a static method in Java?

java
class-literals
java-8
best-practices

What is a Java ClassLoader?

java
class-loading
java-8
classloader-hierarchy

What is object serialization?

java
serialization
object-state
custom-serialization

How to print out all the elements of a List in Java?

java
prompt-engineering
best-practices
data-structures

Converting double to integer in Java

java
floating-point-arithmetic
precision
edge-cases

Is it bad practice to make a setter return "this"?

java
fluent-interface
immutable-objects
builder-pattern

Get the POST request body from HttpServletRequest

java
prompt-engineering
best-practices
java-8

Sharing src/test classes between modules in a multi-module maven project

java
test-jar
modular-builds
reusability

Get only part of an Array in Java?

java
array-slicing
java-arrays
performance-optimization

Optional Methods in Java Interface

java
interface-compliance
default-methods
optional-methods

Difference between final and effectively final

java
lambda
scope
closures

Properly removing an Integer from a List<Integer>

java
method-selection
auto-boxing
explicit-casting

Maven dependency for Servlet 3.0 API?

java
maven
dependency-management
servlet-api

Goto Next Iteration in For Loop in Java

java
loop-control
best-practices
java-8

What causes java.lang.IncompatibleClassChangeError?

java
incompatible-class-change-error
binary-compatibility
dependency-management

How to use JNDI DataSource provided by Tomcat in Spring?

java
jndi
spring-configuration
tomcat-configuration

When should null values of Boolean be used?

java
null-safety
boolean-values
nullability

Get name of currently executing test in JUnit 4

java
unit-testing
junit-4
logging

How to properly stop the Thread in Java?

java
interrupts
thread-termination
resource-management

Group a list of objects by an attribute

java
prompt-engineering
performance
collections