신인수refine-knowledge.hashnode.dev·Dec 10, 2024Jdk]환경 변수 설정상황 JDK를 “a”라는 경로에 설치했습니다. “a”라는 경로에서 java를 실행했습니다. → 정상 작동 “b”라는 경로에서 java를 실행했습니다. → 작동 에러 P] 해결하고 싶은 상황 JDK가 설치 된 경로가 아닌 경로에서도 Java를 실행했을 때, Java가 정상 작동하도록 하고 싶습니다. A] 시스템 환경 변수 Java가 존재하지 않는 경로에서도 OS가 Java의 경로를 인지할 수 있도록 도와줍니다. Researc...Discuss환경변수
Ankita Lunawatcloudhub2295.hashnode.dev·Nov 27, 2024Build and Manage your Java projects using MavenMaven is a powerful build automation tool primarily used for Java projects; it manages the build process, dependencies, and packaging of your project. Prerequisites AWS Account with Ubuntu EC2 Instance. JDK, Maven installed. Update the package li...DiscussJDK
Anuragezytechlabs.hashnode.dev·Nov 24, 2024How to Download and Install Java for a 64-bit Machine?Java is one of the most popular and widely used programming languages. Java is known for its portability, flexibility, and extensive ecosystem of libraries and frameworks. It is often used for developing a wide range of applications, including web ap...DiscussJava Installation
Ratul Hasan Ruhanratulhasanruhan.hashnode.dev·Oct 20, 2024A common error for Flutter build apkCauses: Many plugins, like share_plus, connectivity_plus, etc., now need JDK 17. You get this type of error if you don't have JDK 17. Solutions: Download JDK 17. Put any directory. (You can also add the path to the environment variable.) Add the JDK ...DiscussFlutter
Bikash Nishankbikash-nishank.hashnode.dev·Oct 13, 2024JVM Architecture in Depth Understanding1. Introduction to Java Virtual Machine (JVM) 1.1 What is the JVM? The Java Virtual Machine (JVM) is a virtual environment responsible for running Java applications. When you write Java code and compile it, the Java compiler (javac) transforms the hu...DiscussClass Loader
Yash Patelblog.yashpatel.dev·Oct 6, 2024Navigating Java's Version Landscape: From 8 to 21As a Junior Software Engineer who is passionate about Development in the Java ecosystem, I thought I had a solid grasp of the language. That is until a recent interview threw me a curveball. I have experience working in Java 8 and Java 11 versions, w...DiscussJava
Himanshu Tripathitrihims.hashnode.dev·Sep 29, 2024Upgrading to spring boot - 3.2.x with Groovy 4Our projects were running older version of Spring-boot, Spring-boot 2.5.14 with java11 (JDK 11). We were planning to stay that way as upgrading would divert resources that could have been used in fulfilling the client requests. We employed AWS inspec...Discuss·32 readsSpringboot
Uttam Mahatauttammahata.hashnode.dev·Sep 29, 2024How to Deploy a Spring Boot Application Using Docker: Step-by-StepDeploying a Spring Boot application with Docker simplifies environment setup and ensures consistent behavior across different environments. This guide will walk you through the process of containerizing a Spring Boot web application and deploying it ...DiscussDocker
Romman Sabbirrommansabbir.com·Aug 20, 2024Android 15 features and changes list.Accessibility Better Braille: TalkBack now supports Braille displays using the HID standard over USB and secure Bluetooth. Camera and Media Direct and Offload Audio Playback: Invalidates previously open direct or offload audio tracks when resource...Discuss·118 readsAndroid Application DevelopmentAndroid
Pradip Valapradiptechtalks.hashnode.dev·Aug 10, 2024Understanding JDK,JRE and JVMJDK The JDK is software development kit that provides the tools and libraries necessary to develop java applications, It includes the JRE, as well as development tools like the Java compiler(javac), java documentation tool(javadoc) and various utilit...DiscussJava