Category "java"

Type mismatch: cannot convert from Object Array to int

import java.util.*; public class tryAgain { public static void main(String[] args) { Scanner sc = new Scanner (System.in); //Cre

java.lang.NoSuchFieldError: CLIENT_ENDPOINT for Amazon ECS

I tried to list the ECS clusters using the code as follow: AmazonECS = amazonECS AmazonECSClientBuilder.standard().withRegion(region).withCredentials(new AWSSta

How to fetch genre of a movie using its genre_ids from tmdb api in android

I'd like to use the tmdb api in Android to display the movie's genre, but the problem is that we have to first find the genre id before we can display the genre

NPE: Attempt to invoke virtual method 'android.content.pm.ApplicationInfo android.content.Context.getApplicationInfo()' on a null object reference

I've this basic app called Navigation that I was trying to make to understand some concepts where there are 2 activities MainActivity and ActivityB MainActivity

Spring boot calling SOAP web service

I am trying to call SOAP web service from Spring boot, but I am having an issue with it. I have auto generated classes from this WSDL with maven-jaxb2-plugin: &

IntellIj not displaying exceptions from @BeforeAll JUnit5

In IntelliJ, with a Springboot project (2.6.6) using JUnit 5, given the following test class, IntelliJ doesn't display exceptions occuring in the @BeforeAll met

WAP to accept a string and print only the words having consecutive letters as same and number of occurrences [duplicate]

I was solving this question(the title) and I cant find the mistakes present so please help Input : The buffalo is stuck in a soggy field and

Using PowerMockito with ArgumentCaptor

I simply try to test the following part of my service method: if (isDeleted) { LoggingUtils.info("Deleted. ingredientUuuid: {}", ingredient.getUuid()); } I

How to refactor Java classes in a maven project outside of an IDE

Imagine you have an maven project that compiles fine but lacks in a proper use of packages, because all Java/classes reside in the same package. Is there a tool

Make Log4J2 Async Logger library log messages whenever it drops any log event

I am working on enabling Async logger with our service. We have observed that whenever there is an excessive logging, async logger starts blocking application t

convert complex nested json array using jolt expression in nifi

I have a complex Json where i wanted to flatten the Json using Jolt or any other ways to flatten in Nifi is also fine can anyone please help to flatten the belo

App Crashes when Room DB Entity Class object boolean value is changed to false

I have a Room DB setup in my app and it was working well until recently when the app started crashing. It happens that I have a boolean value as a field in the

How to resolve XSRF Cross-Site Request Forgery (CSRF) in API controller after SAST Checkmarx

I have done the scan my project java spring boot with Checkmarx tool. The tool found about 23 XSRF occurrences with Medium severity. The issue found is marked o

Spring Cloud Gateway - custom 404 error message when route is not found

I have a basic Spring Cloud Gateway app that is configured with YAML: server: port: 8080 logging: level: reactor: netty: INFO org: spri

How reverse data in model class

I use firebase ui realtime database to fetch data in RecyclerView and i use model class and i need to show the latest item firest i try to use Collections.rever

How to write this piece of code more briefly

I am trying to implement a graph using HashMap where I store the nodes (vertices) on the key column and the adjacent nodes ( adjacent list ) as a HashSet on the

Apache Ignite Cache Store + HikariCP DataSource

I am trying to set up Apache Ignite cache store using PostgreSQL as an external storage. public class MyCacheStore extends CacheStoreAdapter<String, MyCache&

how do I use BouncyCastle libraries in my AEM maven project?

problem: My Java code cannot see BouncyCastle libraries. situation: I have a component that needs to use BouncyCastle libraries. The other vendor has provided s

YAML Environment Variable Interpolation in SnakeYAML scala

Leveraging the best from SnakeYAML & Jackson in scala, I am using the following method to parse YAML files. This method supports the usage of anchors in YAM

Database user shared across microservices [closed]

In my project there are 10 microservices. 3-4 APIs are required to pull data from same database but different table. Is it fine to use the sam