1,916,976 questions
Advice
0
votes
1
replies
29
views
Unable to click 'Apply' and 'Interested' buttons on Nokri.com job pages; chatbot overlay not visible after clicking button
I am automating job applications on Naukri.com using Selenium WebDriver in Java.
My code successfully navigates to the job page and opens the job details, but I am unable to click on the 'Apply' or '...
1
vote
0
answers
26
views
method onConstructor_() Error:"symbol not found"
@AllArgsConstructor(onConstructor_ = @Autowired)
i used this @AllArgsConstructor lomboc annotation in my class repositoryduring springboot work.
cannot find symbol
symbol: method onConstructor_()...
0
votes
1
answer
32
views
Installing GitHub project with JitPack + Maven
I want to install a project from a public GitHub repository.
I could clone and install it. However, I want to do it in one go with JitPack without storing sources locally.
Example project. My attempt:
...
0
votes
0
answers
19
views
Failed kotlin compilation in submodule
I have a multi module project. All working fine with java 8 and kotlin 2.3.0. I want to upgrade java up to 21.
After upgrading java kotlin compilatin failing in one of submodules. But in another ...
Tooling
0
votes
0
replies
32
views
Spring boot structured logging issue
Current spring implementation of structured logging with ECS format creates object "service" with fields:
name, version, environment, node
I would like to add field "id" to the ...
Advice
0
votes
2
replies
47
views
Need help in developing Multi-user Blog platform using java full stack
I need help designing a Multi-User Blog Platform using Spring Boot and React or with HTML, CSS, and JavaScript. What basic modules should I implement?
What should be my first step to start the project?...
-9
votes
0
answers
72
views
how to Get client machine name in web application [closed]
i have SSO login System
i want user details. username,hostname,OSversion etc..
I have a Java web application that needs to know the computer name of clients connecting to it.
i not need (InetAddress....
0
votes
0
answers
39
views
Java HttpClient Proxy Authentication Failing to Call getPasswordAuthentication() But Still Returning Status Code 407
I had code that was using the old HttpURLConnection class to make calls to a web API. I was trying to convert that code to use HttpClient instead so that I could make a PATCH call, as the old Java ...
0
votes
1
answer
24
views
Testing if a dialog is pop-up with Playwright for Java
I have a question about dialog in Playwright Java. By far what I have known, you can handle dialog through onDialog(), offDialog(), onceDialog(). But they are not suitable for testing if a dialog is ...
-6
votes
0
answers
103
views
How could I make Java programs run in my 32 bit OS? [closed]
So say I am making an OS in C, 32 bit, how can i make it support Java programs and stuff? I haven't tried it yet I'm just curious if its even worth it or if I should just leave it a terminal-only OS?
Advice
0
votes
2
replies
55
views
Spring @Transactional EgorX_x
I have a Spring service class with two methods, both annotated with @Transactional. When I call the second method from the first one internally (within the same bean), the transaction of the second ...
-6
votes
0
answers
55
views
What are Consumer, Supplier, Function and Predicate in functional interfaces? [duplicate]
I have started to learn functional interface, but no matter how much I see, I don't understand the need of Consumer, Supplier, Predicate and Function. Like, how do they help with programming? Do they ...
0
votes
0
answers
63
views
Android OpenGL ES 3.0: SIGSEGV in libGLESv2_adreno.so during texture type switching (2D & OES) after long-running sessions
Problem Description
I am experiencing a native crash (SIGSEGV) on an Android device (Qualcomm Adreno GPU) when rendering stickers using OpenGL ES 3.0. The crash occurs inside the Adreno driver (...
Best practices
0
votes
4
replies
102
views
Online pdf editing with scrolling and update information automatically
Thank you all for this platform.
Advice
1
vote
1
replies
56
views
How to Create a Composite Index on Multiple Columns in GridDB Using Java API?
I am working on a GridDB time-series container with columns timestamp (TIMESTAMP) and sensor_id (STRING). I want to optimize the performance of a TQL query that filters on both columns:
#code
SELECT * ...