java tag

Java is a high-level, class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible. It is a general-purpose programming language intended to let programmers write once, run anywhere (WORA), meaning that compiled Java code can run on all platforms that support Java without the need to recompile. Java applications are typically compiled to bytecode that can run on any Java virtual machine (JVM) regardless of the underlying computer architecture. The syntax of Java is similar to C and C++, but has fewer low-level facilities than either of them. The Java runtime provides dynamic capabilities (such as reflection and runtime code modification) that are typically not available in traditional compiled languages. As of 2019, Java was one of the most popular programming languages in use according to GitHub, particularly for client–server web applications, with a reported 9 million developers.

Java was originally developed by James Gosling at Sun Microsystems and released in May 1995 as a core component of Sun Microsystems' Java platform. The original and reference implementation Java compilers, virtual machines, and class libraries were originally released by Sun under proprietary licenses. As of May 2007, in compliance with the specifications of the Java Community Process, Sun had relicensed most of its Java technologies under the GPL-2.0-only license. Oracle offers its own HotSpot Java Virtual Machine, however the official reference implementation is the OpenJDK JVM which is free open-source software and used by most developers and is the default JVM for almost all Linux distributions.

As of March 2022, Java 18 is the latest version, while Java 17, 11 and 8 are the current long-term support (LTS) versions. Oracle released the last zero-cost public update for the legacy version Java 8 LTS in January 2019 for commercial use, although it will otherwise still support Java 8 with public updates for personal use indefinitely. Other vendors have begun to offer zero-cost builds of OpenJDK 18 and 8, 11 and 17 that are still receiving security and other upgrades.

Oracle (and others) highly recommend uninstalling outdated and unsupported versions of Java, due to unresolved security issues in older versions. Oracle advises its users to immediately transition to a supported version, such as one of the LTS versions (8, 11, 17).

Reference: WIKIPEDIA

1495 questions


1 answers
54 views
0
I want to create a Java execution environment in VScode (execute Java commands within built-in terminals, enable automatic formatting)

ThinkpadX270/alter linuxVScode 1.67.2java-version openjdk version 18.0.1.1 2022-04-22OpenJDK Runtime Environment (build 18.0.1.1+2)OpenJDK64-Bit Server VM (build 18.0.1.1+2, mixed mode)I would like to...

2 years ago

1 answers
40 views
0
Information About Adding Information to Java MySQL

Data Manipulation Classpublic class Toi3_db{ /** * @paramargs * @throws SQLException * @throws ClassNotFoundException */ public static void main(String[]args)rows SQLException, ClassNotFoundExce...

2 years ago

1 answers
94 views
0
I want to add Image Plugin to Elasticsearch

I would like to add Image Plugin to Elasticsearch by referring to the following website:https://medium.com/ @kwendomi/elasticsearch-4812fc11c5ca I am trying to download and add a plug-in from another ...

2 years ago

1 answers
83 views
0
I want to dynamically change some of my own annotation error messages

This is the continuation of the previous one.I want to use my own annotation to separate error messagessuppress the default message in the context.disableDefaultConstraintViolation(); and I was able t...

2 years ago

1 answers
137 views
0
I want to manage the dependency of a single program in Java like a pip.

for a single program in Java that is not part of the Maven project.Is there a good way to add an external library?For example, in a program that uses an external library, import java.io.*;import org.a...

2 years ago

2 answers
31 views
0
Regarding the results of the execution of the following code:

Q: Please tell me more about the movements of lines 6 to 10 of UseBank.java.Bank.java1:public class Bank { 2—private int money; 3:public void setMoney(int money){ 4—This.money=money;//Subtracts the nu...

2 years ago

4 answers
65 views
0
How do I investigate and resolve HTTP status 500 errors?

I have little experience with Java.I looked at the log just below Apache Tomcat/6.0.20, but there seems to be nothing wrong.Could you tell me how to resolve the error below?HTTP Status500 - type excep...

2 years ago

2 answers
42 views
0
About creating SQL for search functions.

Creating search functionality using Java and SQL.The values entered in the search items (name, name, kana, hobby text box) on the form screen are filled in the placeholder specified in the where claus...

2 years ago

1 answers
69 views
0
Expand SpringBoot Cache and add business logic.

We are considering implementing SpringBoot Cache.The cache provider becomes Redis.@ Cacheable caches the results of the method with key:value.As a business requirement, it is not only necessary to cac...


2 answers
32 views
0
= have a poor comparison in

I wrote this code again to simplify the intent of the previous question. I can't use control statements such as break because I use TimerTask to control it.Why doesn't it end when L is set to false?pu...

2 years ago
« - 30 - »

© 2024 OneMinuteCode. All rights reserved.