Tag

IDEA

0 views collected around this technical thread.

Selected Java Interview Questions
Selected Java Interview Questions
May 9, 2025 · Databases

Comparing IDEA and Navicat for Executing Large SQL Files: Performance Test and Analysis

The author compares IntelliJ IDEA's built‑in database tool with Navicat for running massive SQL dump files, showing that IDEA consistently achieves higher execution speed, lower CPU usage, and no freezes even on multi‑gigabyte scripts, contrary to common expectations.

BackendDatabaseIDEA
0 likes · 5 min read
Comparing IDEA and Navicat for Executing Large SQL Files: Performance Test and Analysis
Java Architect Essentials
Java Architect Essentials
Mar 17, 2025 · Backend Development

One‑Click Deployment of a SpringBoot Application Using IDEA and Docker

This tutorial demonstrates how to replace the traditional jar‑upload workflow with an IDEA‑integrated Docker solution, covering environment setup, SSH configuration, Docker daemon connection, SpringBoot code, Dockerfile creation, remote deployment settings, firewall opening, and common troubleshooting steps.

DockerIDEAMaven
0 likes · 8 min read
One‑Click Deployment of a SpringBoot Application Using IDEA and Docker
Java Architect Essentials
Java Architect Essentials
Feb 25, 2025 · Backend Development

IntelliJ IDEA Usage Tips and Advanced Features

This article provides a comprehensive guide to IntelliJ IDEA, covering basic operations, advanced shortcuts, Maven integration, debugging, hot‑reload settings, and various UI customizations, offering developers practical tips and code snippets to boost Java development efficiency.

HotReloadIDEAIntelliJ
0 likes · 6 min read
IntelliJ IDEA Usage Tips and Advanced Features
Architect's Guide
Architect's Guide
Dec 22, 2024 · Backend Development

Cool Request Plugin for IDEA: Tracing, MyBatis Function Tracking, and Custom Timing Features

The article introduces the Cool Request IDEA plugin, explains its tracing capabilities for arbitrary packages, automatic MyBatis function monitoring, customizable timing colors, script-based environment manipulation, and provides a Java code example for handling responses, highlighting its usefulness for backend developers.

BackendIDEAJava
0 likes · 4 min read
Cool Request Plugin for IDEA: Tracing, MyBatis Function Tracking, and Custom Timing Features
Selected Java Interview Questions
Selected Java Interview Questions
Dec 9, 2024 · Backend Development

Hot Deployment Techniques for Spring Boot: IDEA Configuration, Spring DevTools, and JRebel

This article explains three hot‑deployment methods for Spring Boot—IDEA's configuration options, the spring‑boot‑devtools library, and the JRebel plugin—detailing how to set them up, their underlying mechanisms, and best‑practice recommendations to avoid costly full restarts during development.

DevtoolsHot DeploymentIDEA
0 likes · 4 min read
Hot Deployment Techniques for Spring Boot: IDEA Configuration, Spring DevTools, and JRebel
Java Architect Essentials
Java Architect Essentials
Nov 25, 2024 · Databases

IDEA vs Navicat: Performance Comparison for Executing Large SQL Files

The author compares IDEA's built‑in database tool with Navicat for running massive SQL scripts, showing that IDEA consistently uses less CPU, avoids freezes, and achieves higher execution speed—even on files up to 1.83 GB—making it the preferred choice for large‑scale database migrations.

DatabaseIDEALarge Files
0 likes · 5 min read
IDEA vs Navicat: Performance Comparison for Executing Large SQL Files
Selected Java Interview Questions
Selected Java Interview Questions
Nov 19, 2024 · Backend Development

Improving IDEA Maven Build Speed with Multi‑Threading and Build Cache

This guide explains why IDEA's built‑in Maven builds are slow for large multi‑module projects and provides step‑by‑step instructions to enable multi‑threaded builds, delegate IDE builds to Maven, and add Maven cache extensions and configuration files to dramatically reduce build time.

CacheIDEAMaven
0 likes · 8 min read
Improving IDEA Maven Build Speed with Multi‑Threading and Build Cache
IT Services Circle
IT Services Circle
Jul 21, 2024 · Fundamentals

Vim Basics and Using the IDEA Vim Plugin for Efficient Coding

Vim is a powerful, cross‑platform text editor featuring multiple modes and extensive keyboard shortcuts that enable fast, mouse‑free editing, and this guide explains its core concepts, basic command workflow for editing configuration files, and how to integrate Vim functionality directly into IntelliJ IDEA via the IdeaVim plugin.

IDEAText EditorVim
0 likes · 5 min read
Vim Basics and Using the IDEA Vim Plugin for Efficient Coding
Lobster Programming
Lobster Programming
May 23, 2024 · Backend Development

How to Quickly Debug Java Applications Remotely with IDEA

This guide explains how to enable Java remote debugging, step by step, to efficiently locate issues that only appear in pre‑release or production environments, using IDEA and a simple command‑line configuration.

IDEAJavabackend development
0 likes · 4 min read
How to Quickly Debug Java Applications Remotely with IDEA
Java Tech Enthusiast
Java Tech Enthusiast
May 2, 2024 · Backend Development

Why IDEA Warns on @Autowired but Not on @Resource: A Spring DI Overview

IDEA flags @Autowired field injection but not @Resource because Spring advises against field injection—seeing it as tightly coupled and hard to test—while @Resource is a standard JSR‑250 annotation, so the IDE applies the warning only to the Spring‑specific @Autowired usage.

AutowiredIDEAJava
0 likes · 5 min read
Why IDEA Warns on @Autowired but Not on @Resource: A Spring DI Overview
Kuaishou Tech
Kuaishou Tech
Apr 25, 2024 · Backend Development

Engineering Architecture Governance: Jar Package Management, IDEA Performance, and Maven Dependency Optimization at Kuaishou

This article details Kuaishou's engineering architecture governance process, covering project background, IDEA performance bottlenecks, cloud‑based IDE solutions, MavenHelper and custom Maven plugins for dependency analysis, handling NoClassDefFoundError issues, and static‑dynamic class dependency detection to improve backend build efficiency.

Architecture GovernanceIDEAJava
0 likes · 13 min read
Engineering Architecture Governance: Jar Package Management, IDEA Performance, and Maven Dependency Optimization at Kuaishou
Architecture Digest
Architecture Digest
Jun 7, 2023 · Backend Development

Why IntelliJ IDEA Warns on @Autowired Field Injection but Not on @Resource

The article explains the differences between Spring's @Autowired and @Resource annotations, outlines the pros and cons of various dependency injection methods, and clarifies why IntelliJ IDEA issues a warning for field injection with @Autowired while treating @Resource as acceptable, emphasizing portability and coupling concerns.

AutowiredIDEAJava
0 likes · 5 min read
Why IntelliJ IDEA Warns on @Autowired Field Injection but Not on @Resource
Top Architect
Top Architect
Apr 3, 2023 · Backend Development

Enabling Docker Remote Access, Configuring IDEA Docker Plugin, and Deploying a Spring Boot Eureka Server with Maven

This tutorial walks through enabling Docker remote connections on Linux and Windows, installing and configuring the IntelliJ IDEA Docker plugin, adding a docker‑maven‑plugin to a Spring Boot Eureka project, building Docker images, creating containers with port mapping, and setting up one‑click deployment for rapid backend development.

BackendDockerEureka
0 likes · 11 min read
Enabling Docker Remote Access, Configuring IDEA Docker Plugin, and Deploying a Spring Boot Eureka Server with Maven
IT Services Circle
IT Services Circle
Mar 10, 2023 · Backend Development

Docker Packaging and Deployment Guide for a Windows‑based Spring Boot Microservice

This article explains how to set up Docker on Windows, create a Dockerfile for a Spring Boot microservice, build the image with Maven and IDEA, test the container, and finally export, transfer, and run the image on a Linux server with proper volume and port mappings.

DockerIDEASpringBoot
0 likes · 10 min read
Docker Packaging and Deployment Guide for a Windows‑based Spring Boot Microservice
Wukong Talks Architecture
Wukong Talks Architecture
Mar 2, 2023 · Cloud Native

Docker Packaging and Deployment on Windows with IDEA – A Complete Guide

This article explains how to set up a Docker-based deployment workflow on Windows, covering Hyper‑V activation, Docker Desktop installation, Maven build, Dockerfile creation, IDEA integration, container testing, and final deployment to a Linux server.

DockerIDEASpringBoot
0 likes · 10 min read
Docker Packaging and Deployment on Windows with IDEA – A Complete Guide
macrozheng
macrozheng
Feb 9, 2023 · Backend Development

Auto‑Generate Spring API Docs in IDEA with Apifox Helper Plugin

Learn how to install and configure the Apifox Helper plugin in IntelliJ IDEA to automatically generate, sync, and debug Java Spring API documentation, offering a zero‑intrusion alternative to Swagger with built‑in mock and testing features.

API DocumentationApifoxIDEA
0 likes · 8 min read
Auto‑Generate Spring API Docs in IDEA with Apifox Helper Plugin
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Sep 29, 2022 · Backend Development

Understanding Flowable Workflow Engine: Concepts, Tools, and Implementation

This article introduces the need for workflow engines, compares the three major Java‑based engines (Activiti, Flowable, Camunda), explains BPMN notation, and provides detailed guidance on using Flowable's Eclipse Designer, IDEA plugins, flowable‑ui, bpmn.js, and related Vue components to model, deploy, and manage business processes.

BPMNFlowableIDEA
0 likes · 22 min read
Understanding Flowable Workflow Engine: Concepts, Tools, and Implementation