Most voted "java" questions

Use this tag when the question refers to some resource, information, or problem relating exclusively to the Java programming language. Java is a class-based, statically typed, reflective, and execution environment (JRE) language. Java programs are compiled to bytecode and run on a virtual machine (JVM), allowing a "write Once, run Anywhere" philosophy (WORA).

Learn more…

14,468 questions

Sort by count of

  • 0

    votes

    0

    answers

    33

    views

    Problems migrating Java 11 with CXF

    I am migrating my application that is on Java 8 and CXF 2.7.10. I upgraded the Java version to 11 and CXF to the latest version. However, when generating WSDL the results are different. Another…

  • 0

    votes

    0

    answers

    17

    views

    Select table item and generate Jasperreport

    How do I generate a Jasperreport by clicking on an item in a table? My question more precisely is that when clicking on the table row the method would be get (requestMapping), then as from there how…

  • 0

    votes

    0

    answers

    43

    views

    Application server or Java program that determines sent TLS protocol?

    I have a Java program that uses JDK 7, it is deployed on an application server (WEBLOGIC 10.3). By default, when making requests for data in the JSON format provided by a website, the program is…

  • 0

    votes

    0

    answers

    57

    views

    Android - Error while saving file on SD card

    I recently created an application in which I share files through a Intent filter, so that the user can save the shared file to any system folder. The purpose of this application is to share a file…

  • 0

    votes

    0

    answers

    15

    views

    Problem changing Procedure after execution by Hibernate

    Hello, I am having problems in my project, when I run a Project using Hibernate, after the end of the execution, even closing the connection I can’t change is Project using Ibexpert, it says it is…

  • 0

    votes

    0

    answers

    22

    views

    Auditoria Hibernate

    I am trying to accomplish the construction of a history of a given table. @Entity @Table(name = "RUBRICA_INSTITUTO) @Getter @Setter @Audited @Audittable( "RUBRICA_INSTITUTO_AUDITORIA" )…

  • 0

    votes

    0

    answers

    38

    views

    How do I insert previous tuples into tables in a Sqlite3 database?

    I’m developing an RPG-style app using Android Studio. This app needs a database and as there is no need to be online, I am using Sqlite 3. The problem is that some data need to be previously entered…

  • 0

    votes

    0

    answers

    47

    views

    Request for Resttemplate spring

    I am trying to make a request for a get type starWars api to the following url = https://swapi.dev/api/planets/3 The codes stayed that way: @Log4j2 public class SpringClient { public static void…