Introduction
In modern software development, delivering high-quality code often boils down to catching issues as early as possible in the development lifecycle. This “shift-left” approach reduces costly rework later on, improves collaboration, and leads to more reliable releases.
According to a 2022 DevOps Trends Report by Atlassian, more than 60% of engineering teams cite “late discovery of issues” as a significant bottleneck in their delivery process. Another study by CISQ (Consortium for IT Software Quality) estimates that poor software quality, cost organizations a staggering $2.08 trillion in 2020 alone. Delays, rework, and post-release patches often contribute heavily to these costs.
Fortunately, integrating SonarQube directly into your development workflow can address these concerns head-on. By leveraging Connected Mode in your favorite IDE, such as IntelliJ, you can detect and resolve issues as soon as they appear. This approach not only enhances code quality but also fosters team collaboration, ensuring everyone is on the same page about best practices and project standards.
In this article, we’ll walk you through:
- How to set up and optimize SonarQube’s Connected Mode for IntelliJ.
- Practical tips for making the most of Connected Mode in your daily coding routine.
- A preview of AI CodeFix, which offers automated insights and code suggestions to keep your project future-proof.
Benefits of using Connected Mode
Connected Mode links your IDE (e.g., IntelliJ) to SonarQube, offering a live feedback loop that flags code issues on the fly. By integrating SonarQube with your CI/CD pipeline, Connected Mode extends the shift-left philosophy into your local environment:
- Real-Time Issue Detection: Get immediate feedback on bugs, security hotspots, and code smells while coding.
- Consistency & Collaboration: Your entire team benefits from the same quality profiles in the IDE, ensuring uniform reviews across branches and repositories.
- Seamless CI/CD Integration: Connected Mode hooks into your build pipeline, catching new issues before they escalate. This is when users try to push a commit with errors.
- AI CodeFix Activation: Connected mode easily activates the usage of AI CodeFix feature and for your visibility it shows the details of the issue and the fix as well.
- Notifications for Quality Gate failure: If SonarQube detects any quality gate failure, you will also get the notification on your IDE.
- Synchronization of issues status: From SonarQube to IDE, you will have full visibility of the issue status.
Step-by-Step Guide: Setting Up the SonarQube IDE Plugin for IntelliJ
We will now walk you through the process of setting up and using SonarQube IDE Plugin for IntelliJ. By following these steps, you'll integrate SonarQube into your development workflow.
Install the SonarQube Plugin
- In IntelliJ, go to Settings.
- Go to “Plugins” search for “SonarQube” and click on “Install”.
- Restart IntelliJ when prompted.

Configure Your SonarQube Connection
- After the restart, navigate to Settings > Tools > SonarQube for IDE.
- Under the Connections to SonarQube section, click on the “+” icon.
- Provide a Connection Name.
- Choose a Connection Type. For this article, we are choosing SonarQube Cloud.
- Click on Next.
- For the New Connection: Authentication screen, click on Create Token.
- It will open up a new tab. Click on Allow connection.

- Go back to the IDE and choose an Organization.
- Click on Next.
- Click on the check box on “Receive notifications from SonarQube Cloud.”
- Click on Next.
- Click on Create. Click on OK.

Bind a Project with SonarQube
- To open the project in IntelliJ that needs analysis, click on Open. Select the folder where the source code is. Click on Trust.
- Once the project is open, you will see a pop up “SonarQube for IDE suggestions”.
- Click on the “Bind project”.

At this point, your project is set up and binding is done with the SonarQube. We will now show you the effect of the Shift-Left work using our AI CodeFix functionality.
Applying AI CodeFix in IntelliJ
After successfully setting up Connected Mode, you can further enhance productivity using SonarQube’s AI CodeFix feature:
- Login to your SonarQube Cloud account.
- Select your project.
- Click on the Main Branch.
- Identify an issue in the SonarQube Cloud screen.
- Open the issue.

- Click on Open in IDE & switch to your IDE (IntelliJ).
- Click on AI CodeFix Tab.
- Click on Generate Fix.
AI CodeFix evaluates the issue and offers a fix based on SonarQube’s rule sets and best practices.

- Apply the Fix. Click on Accept the suggestion to automatically update the affected code sections.

- Validate the Change. You can verify the fix by running tests or a local build to ensure compatibility with the rest of your codebase.
Benefits of AI CodeFix
- Faster Remediation: Quickly address repetitive or well-known issues without extensive manual intervention.
- Consistent Standards: Align automated fixes with your organization’s specific coding and security requirements.
- Learning Opportunity: See exactly how the IDE modifies your code, helping you develop better habits and reduce similar issues in the future.
Conclusion
Implementing Connected Mode in IntelliJ is a crucial step toward embracing a shift-left culture of proactive quality assurance. With SonarQube’s real-time analysis and AI CodeFix, you’ll not only reduce bugs and security gaps but also diminish the stress of finding critical issues late in the game.
Ready to transform your development process?
- Install the SonarQube Plugin in IntelliJ if you haven’t already.
- Set Up Connected Mode to benefit from live feedback and cohesive team standards.
- Try AI CodeFix to turn static analysis insights into actionable solutions right when and where you code.
By taking these steps now, you’ll accelerate your release cadence, minimize technical debt, and create an environment where your team can focus on what truly matters: building innovative, high-quality software that delights users.