Anonymous » 05 мар 2024, 06:52
Последнее сообщение Anonymous «
Anonymous »
I'm working on a large scale project(written with Java 8 and Java 11) where they have used springfox-boot-starter. We are working on migrating the project to Java 17 and Spring Boot 3, but facing the same issue mentioned in here Springfox Type...
Anonymous » 05 мар 2024, 06:38
Последнее сообщение Anonymous «
Anonymous »
My application is using gRPC in JAVA. The response message size is random. The message size has a range from 1B to 2MB. If I reduce the concurrent request count, the performance is not expected when all the responses are 1B. If I increase the...
Гость » 04 мар 2024, 18:56
Последнее сообщение Гость «
Гость »
How do I obfuscate a WAR using proguard? I have one WAR which contains multiple dependencies as JARs inside and I want to obfuscate only my codebase, by filtering by package name (leaving the rest of dependencies intact).
Гость » 04 мар 2024, 18:56
Последнее сообщение Гость «
Гость »
I'm trying to write an implementation of MapPanel by Stepan Rutz in JavaFX.
Stepan's map allows the user to move around the map while the map tiles haven't been loaded and I'm trying to get that same effect.To do it I'm using Task to run the...
Гость » 04 мар 2024, 18:52
Последнее сообщение Гость «
Гость »
I have a JPQL query that is looking for distinct records with pageable. There are situations where the pageable sort will be a property in a nested class.
public class Entity1 { @Id private long id; @ManyToOne private Entity2 entity2; } public...
Гость » 04 мар 2024, 18:51
Последнее сообщение Гость «
Гость »
I need to modify an 8 year old, very bound code. In the old code I didn't have to wait for the async result, so I could work with it easily, but now I have to wait for it because of another async task.
Гость » 04 мар 2024, 18:46
Последнее сообщение Гость «
Гость »
Consider the following Java class structure:
public class myClass { class myInnerClass {} } After compiling with the command javac myClass.java, two class files are generated: myClass.class and myClass$myInnerClass.class.
Гость » 04 мар 2024, 18:42
Последнее сообщение Гость «
Гость »
Lets say I have class A and B
class A{ } class B{ A a; B(){ System.out.print( Hello ); a = something; } } Now I have a bean.xml file where I create a bean of A and B and inject A into B. If the default constructor is called while creating the bean...
Гость » 04 мар 2024, 18:41
Последнее сообщение Гость «
Гость »
I have to use recursion to get the nodes from the linked list to a string and use string builder.
public String toString() { StringBuilder sb = new StringBuilder(); Node current = head; if (current.getNext() != null) { sb.append(current.getData() +...
Гость » 04 мар 2024, 18:31
Последнее сообщение Гость «
Гость »
I have modified the structure to create a simple example of the problem I am facing, which can be easily reproduced. I am attempting to combine two custom components - one is a custom button and the other is an hbox that contains the custom button....
Гость » 04 мар 2024, 18:30
Последнее сообщение Гость «
Гость »
Java maven war project - when the application starts it should create file and write logs as per log4j2 configuration - here the file is getting created and log4j2 is also taking - but the logs are not getting written to new file. pom, log4j2 and...
Гость » 04 мар 2024, 18:29
Последнее сообщение Гость «
Гость »
I have this simple microservices application with Spring Boot and I try to add the Spring Cloud Gateway service, but it doesn't work. All microservices, including the Eureka server, work well, but when I try to access to some microservice using the...
Гость » 04 мар 2024, 18:28
Последнее сообщение Гость «
Гость »
I use intellij-idea and when I click on the project new -} on this page, I don't see Android. I tried several ways, but it didn't work, like installing a plugin and changing a series of settings, but it didn't work. please help me thanks
Гость » 04 мар 2024, 18:24
Последнее сообщение Гость «
Гость »
This is my first time coding for the socket communication so you might see a beginner level's approach. Please bear with it. I am trying to send and receive data from a device (devices in next step) through socket communication. the device receives...
Вы можете начинать темы Вы можете отвечать на сообщения Вы не можете редактировать свои сообщения Вы не можете удалять свои сообщения Вы можете добавлять вложения