Tag

IntelliJ IDEA

0 views collected around this technical thread.

Java Captain
Java Captain
Jun 11, 2025 · Backend Development

How to Import Modules and Build JAR Files in IntelliJ IDEA

This step‑by‑step guide shows how to create an IntelliJ IDEA project, import a Java module into it, associate the module with the project, and then package the application into a JAR file using the IDE’s Project Structure and Artifacts settings.

IDE tutorialIntelliJ IDEAJAR packaging
0 likes · 6 min read
How to Import Modules and Build JAR Files in IntelliJ IDEA
macrozheng
macrozheng
May 29, 2025 · Backend Development

Master IntelliJ IDEA with the Official Chinese Docs: A Complete Guide

This article introduces the official Chinese documentation for IntelliJ IDEA (version 2025.1), outlining a step‑by‑step tutorial that covers installation, configuration, shortcuts, project setup, code editing, building, running, debugging, version control, database tools, and JVM frameworks, providing Java developers with a comprehensive learning resource.

IDE configurationIDE tutorialIntelliJ IDEA
0 likes · 5 min read
Master IntelliJ IDEA with the Official Chinese Docs: A Complete Guide
Top Architecture Tech Stack
Top Architecture Tech Stack
May 27, 2025 · Backend Development

Analyzing and Cleaning Maven Project Dependencies with mvn dependency:analyze

This guide explains why and how to use Maven's dependency analysis tool to detect used undeclared and unused declared dependencies, demonstrates the required commands, interprets the warnings, and outlines best‑practice timing and risk considerations for Java backend projects.

Backend DevelopmentIntelliJ IDEAJava
0 likes · 8 min read
Analyzing and Cleaning Maven Project Dependencies with mvn dependency:analyze
JD Tech Talk
JD Tech Talk
May 20, 2025 · Fundamentals

Java Code Style Guidelines: Standards, Tool Integration, and Best Practices

This article explains why consistent Java code style matters, reviews major industry standards such as Google and Alibaba, guides the selection and customization of a style guide, and demonstrates how to configure IntelliJ IDEA, Checkstyle, and Maven to enforce the rules throughout development.

CheckStyleIntelliJ IDEAJava
0 likes · 12 min read
Java Code Style Guidelines: Standards, Tool Integration, and Best Practices
Java Tech Enthusiast
Java Tech Enthusiast
May 5, 2025 · Fundamentals

IntelliJ IDEA 2025.1 Release: AI Assistant Integration and Java 24 Support

IntelliJ IDEA 2025.1 launches with full Java 24 support, Kotlin K2 as the default mode, and a unified JetBrains AI Assistant that adds smarter code completion, multi‑file chat editing, and cloud models like GPT‑4.1, while also delivering enhanced debugging, a revamped terminal, improved framework tools, native Gradle daemon configuration, and richer Git integration.

Build ToolsIDE featuresIntelliJ IDEA
0 likes · 6 min read
IntelliJ IDEA 2025.1 Release: AI Assistant Integration and Java 24 Support
Architecture Digest
Architecture Digest
May 5, 2025 · Backend Development

Using Maven Dependency Analyzer to Detect Unused and Undeclared Java Dependencies

This article explains how to run Maven's dependency:analyze command, interpret its warnings about used‑undeclared and unused‑declared libraries, and safely clean up Java project dependencies, while also offering quick IntelliJ IDEA shortcuts and noting related promotional offers.

Backend DevelopmentIntelliJ IDEAJava
0 likes · 7 min read
Using Maven Dependency Analyzer to Detect Unused and Undeclared Java Dependencies
macrozheng
macrozheng
Apr 29, 2025 · Information Security

Why Companies Ban IntelliJ IDEA: Legal, Security, and Cost Insights

The article explains why some companies prohibit IntelliJ IDEA, citing copyright risks, security vulnerabilities, efficiency losses from activation prompts, collaboration challenges, and the high cost of commercial licenses, while emphasizing the need to follow unified tool policies.

IntelliJ IDEASoftware Licensingcompany policy
0 likes · 6 min read
Why Companies Ban IntelliJ IDEA: Legal, Security, and Cost Insights
macrozheng
macrozheng
Apr 19, 2025 · Backend Development

What’s New in IntelliJ IDEA 2025.1? AI Boosts, Java 24 Support & More

IntelliJ IDEA 2025.1 introduces comprehensive Java 24 support, makes Kotlin K2 the default mode, delivers a major AI assistant upgrade with free unlimited code completion, and adds numerous productivity enhancements such as improved debugging, UI redesign, containerfile support, and tighter Gradle integration.

AI AssistantIntelliJ IDEAJava 24
0 likes · 7 min read
What’s New in IntelliJ IDEA 2025.1? AI Boosts, Java 24 Support & More
Top Architect
Top Architect
Apr 6, 2025 · Backend Development

Comprehensive Guide to Using IntelliJ IDEA Debug Features

This tutorial provides a thorough walkthrough of IntelliJ IDEA's Debug functionality, covering preparation, main interface, detailed explanations of service and debug buttons, variable inspection and modification, conditional breakpoints, expression evaluation, frame dropping, force return, multithreaded and Stream debugging, as well as remote debugging techniques.

IntelliJ IDEAJavadebugging
0 likes · 20 min read
Comprehensive Guide to Using IntelliJ IDEA Debug Features
Architecture Digest
Architecture Digest
Mar 28, 2025 · Backend Development

One-Click Deployment of SpringBoot Projects Using IntelliJ IDEA and Docker

This tutorial demonstrates how to configure IntelliJ IDEA for remote one‑click deployment of a SpringBoot application with Docker, covering environment setup, SSH and Docker daemon configuration, Dockerfile creation, Maven build steps, firewall adjustments, and troubleshooting common deployment issues.

DevOpsDockerIntelliJ IDEA
0 likes · 8 min read
One-Click Deployment of SpringBoot Projects Using IntelliJ IDEA and Docker
IT Services Circle
IT Services Circle
Mar 18, 2025 · Backend Development

Why Debugging a Simple ConcurrentLinkedQueue Triggers a NullPointerException in IntelliJ IDEA

The article recounts a puzzling case where a minimal Java program using ConcurrentLinkedQueue runs fine normally but throws a NullPointerException when debugged in IntelliJ IDEA, explains the underlying cause involving the IDE's automatic toString invocation, and shows how to disable the offending settings.

ConcurrentLinkedQueueIntelliJ IDEAJava
0 likes · 9 min read
Why Debugging a Simple ConcurrentLinkedQueue Triggers a NullPointerException in IntelliJ IDEA
Top Architect
Top Architect
Mar 13, 2025 · Backend Development

One‑Click Remote Deployment of SpringBoot Projects Using IntelliJ IDEA and Docker

This article guides readers through setting up IntelliJ IDEA and Docker for one‑click remote deployment of a SpringBoot application, compares traditional jar deployment, explains SSH and Docker daemon configuration, provides a sample Dockerfile, and then promotes various AI‑related products and services.

Backend DevelopmentDevOpsDocker
0 likes · 10 min read
One‑Click Remote Deployment of SpringBoot Projects Using IntelliJ IDEA and Docker
Top Architecture Tech Stack
Top Architecture Tech Stack
Mar 5, 2025 · Backend Development

One-Click Remote Deployment of SpringBoot Projects with IntelliJ IDEA and Docker

This tutorial explains how to set up IntelliJ IDEA and Docker for one‑click remote deployment of a SpringBoot application, covering prerequisite installations, SSH configuration, Docker daemon basics, Dockerfile creation, and the step‑by‑step configuration within IDEA to streamline project deployment and log monitoring.

Backend DevelopmentDockerIntelliJ IDEA
0 likes · 7 min read
One-Click Remote Deployment of SpringBoot Projects with IntelliJ IDEA and Docker
Sanyou's Java Diary
Sanyou's Java Diary
Mar 3, 2025 · Backend Development

Why Method Breakpoints Slow Down Your Java Debugging by 2000% (And How to Fix It)

This article explains how enabling Java method breakpoints in IntelliJ IDEA can increase startup time from under two seconds to over thirty seconds, why the JVM design causes the slowdown, and provides practical steps—removing method breakpoints, disabling method‑exit events, and using line breakpoints—to restore fast debugging performance.

IntelliJ IDEAJavadebugging
0 likes · 18 min read
Why Method Breakpoints Slow Down Your Java Debugging by 2000% (And How to Fix It)
Architecture Digest
Architecture Digest
Mar 2, 2025 · Backend Development

One-Click Remote Deployment of SpringBoot Projects Using IntelliJ IDEA and Docker

This tutorial explains how to configure IntelliJ IDEA and Docker for one‑click remote deployment of a SpringBoot application, contrasting the traditional jar‑file method with a Docker‑based workflow that streamlines building, uploading, and running the service while providing real‑time log access.

Backend DevelopmentDockerIntelliJ IDEA
0 likes · 6 min read
One-Click Remote Deployment of SpringBoot Projects Using IntelliJ IDEA and Docker
Code Ape Tech Column
Code Ape Tech Column
Mar 2, 2025 · Fundamentals

Advanced IntelliJ IDEA Debugging Techniques: Evaluate and Log, Field, Exception, and Method Breakpoints

This article introduces several advanced IntelliJ IDEA debugging techniques—including Evaluate and Log at breakpoints, field breakpoints, exception breakpoints, and method breakpoints—providing step‑by‑step instructions, code examples, and screenshots to help Java developers debug more efficiently without cluttering source code.

IDE tipsIntelliJ IDEAJava
0 likes · 6 min read
Advanced IntelliJ IDEA Debugging Techniques: Evaluate and Log, Field, Exception, and Method Breakpoints
Selected Java Interview Questions
Selected Java Interview Questions
Feb 26, 2025 · Artificial Intelligence

Integrating DeepSeek AI Assistant into IntelliJ IDEA for Java Development

This guide walks Java developers through preparing the environment, installing the CodeGPT plugin, configuring DeepSeek API keys and models, and using the AI assistant for code generation, completion, explanation, and troubleshooting within IntelliJ IDEA, complete with screenshots and sample code.

AI code assistantCodeGPTDeepSeek
0 likes · 8 min read
Integrating DeepSeek AI Assistant into IntelliJ IDEA for Java Development
Java Architect Essentials
Java Architect Essentials
Feb 19, 2025 · Artificial Intelligence

Integrating DeepSeek AI Assistant into IntelliJ IDEA for Java Development

This guide walks Java developers through preparing the environment, installing the CodeGPT plugin, configuring DeepSeek API keys, and using the AI-powered code assistant within IntelliJ IDEA, including code completion, explanation, and question‑answer features, with usage statistics and sample code.

AI code assistantCodeGPTDeepSeek
0 likes · 9 min read
Integrating DeepSeek AI Assistant into IntelliJ IDEA for Java Development
Java Captain
Java Captain
Feb 13, 2025 · Artificial Intelligence

Integrating DeepSeek AI Assistant into IntelliJ IDEA: A Step‑by‑Step Guide

This tutorial explains how to prepare the environment, install the CodeGPT plugin, configure DeepSeek API keys and model settings in IntelliJ IDEA, and use the AI assistant for code generation, completion, explanation, and troubleshooting, while also showing usage statistics and a complete Java example.

AI code assistantCodeGPTDeepSeek
0 likes · 7 min read
Integrating DeepSeek AI Assistant into IntelliJ IDEA: A Step‑by‑Step Guide
Architect's Guide
Architect's Guide
Feb 13, 2025 · Backend Development

Analyzing and Cleaning Maven Dependencies with the Maven Dependency Plugin

This article explains why and how to use Maven's dependency:analyze command in IntelliJ IDEA to identify used undeclared and unused declared dependencies, offering practical steps, risk considerations, and tips for maintaining clean Java backend projects.

Backend DevelopmentIntelliJ IDEAJava
0 likes · 7 min read
Analyzing and Cleaning Maven Dependencies with the Maven Dependency Plugin