Questions tagged [intellij-14]

IntelliJ IDEA is a popular IDE by JetBrains. Originally created for Java, it currently supports a lot more languages, including: JavaScript, Groovy, HTML, CSS, RSS, R, Haskell, PHP, Ruby, Python, Scala, Clojure, Kotlin.

IntelliJ IDEA is a popular IDE by JetBrains. It is often simply referred to as 'IDEA' or 'IntelliJ'. First released in 2001, it is mostly focused on boosting developer's productivity, providing a wide set of automated refactorings to ease codebase evolutions. Rich plugin development API can be used to add almost any type of functionality, including new languages/frameworks support, VCS integation or build management with custom tools involved. Intellij Idea also serves as a base platform for other IDE software: PhpStorm, PyCharm, RubyMine.

The Ultimate (commercial) version of the tool offers support for enterprise class development, while the open-source (free) version is often used for android, groovy, scala and web development. A 30-day fully functional trial of the Ultimate edition for various platforms can be freely downloaded.

Useful links

Intellij Idea documentation

Developer community

Plugin development guide

830 questions
10
votes
1 answer

IntelliJ how do I generate a new class?

When I go to my project structure and right click -> new, I only see new file/folder etc... but no class generation or packages. How do I get IntelliJ to do this? (I have Intellij 14 Ultimate - see image below)
Ben Flowers
  • 1,434
  • 7
  • 21
  • 49
10
votes
1 answer

Showing graphically the equivalent of git log --follow in IntelliJ

Is there a way in IntelliJ 14 to show the full log of a specific file? I mean: executing a kind of git log --follow graphically in order to see the old versions; before those files were potentially renamed. Currently, when I do Git => Show History…
Mik378
  • 21,881
  • 15
  • 82
  • 180
9
votes
4 answers

IntelliJ IDEA can't open projects or add SDK on macOS Catalina

If I open IntelliJ IDEA and try and import any project or open any folder containing a project, nothing happens, I'm just returned to this screen. Earlier on, before I moved my project files around, I tried to set a new JDK for a project and i…
Wayneio
  • 3,466
  • 7
  • 42
  • 73
9
votes
1 answer

Intellij ultimate vs community version for spring framework

as per the Intellij site, the community version does not support the spring and other J2EE frameworks. But I can create a new spring maven project, import in community version IDE and can start development.My question is what are the advantages of…
DEVAS
  • 344
  • 2
  • 12
9
votes
1 answer

IntelliJ exclude folder from exploded war

We have a java web project in IntelliJ (Ultimate 14.1.14) and we want to exclude a certain folder from the exploded war. Using a maven profile we created the folder gets excluded from the generated war file, but we need to exclude it in the…
ipapag
  • 93
  • 6
9
votes
1 answer

How to pass Debug Flag to Spring Boot via Gradle bootRun to view AutoConfigure information

So i'm working on the Consuming Rest Services with Spring Boot Tutorial and trying to figure out how it's wiring the AutoConfigure with Jackson and RestTemplate. I have been told I can pass the --debug flag to Spring Boot. This would make Spring…
Shaun
  • 4,057
  • 7
  • 38
  • 48
9
votes
1 answer

Hotswap/DCEVM doesn't work in Intellij IDEA (Community Version)

I have troubles in making use of the hotswap function in Intellij IDEA Community Version. Mine is v 14.1.4. Each time after I fired off debugging and change the java code, I have already click rebuild project and press "Yes" on confirming reload…
im_chc
  • 1,023
  • 15
  • 24
9
votes
4 answers

How to stay on the current thread while step-debugging in intellij

While debugging multi-threaded code in intellij, and more specifically while stepping inside a thread... Setup: @Override public void run() { while (true) { System.err.println("1"…
Nathan
  • 937
  • 9
  • 15
9
votes
2 answers

IntelliJ: Is there an Intention Action to convert old style Log4J calls to new style SLF4J calls?

I am working on a project with legacy code that had used Log4J in the past, and now uses SLF4J. Most of the old style Log4J logging statements remain, and I convert the log statements slowly to the new SLF4J style as I come across them. I've just…
vegemite4me
  • 6,621
  • 5
  • 53
  • 79
9
votes
2 answers

How do I stop IDEA from reformatting my code when refactoring?

When refactoring code (e.g.: Refactor -> Rename), IntelliJ IDEA 14.x also rewraps (reformats) my code to fit into the 80 column limit. Example: here's the code before the refactoring: Refactoring in progress: ... and the code is re-wrapped once I…
Bass
  • 4,977
  • 2
  • 36
  • 82
9
votes
7 answers

Where could IntellijIDEA cache maven dependencies?

For some of my modules Intellij IDEA is not importing the dependencies and plugins. Just the live cycle is imported. The poms are valid as I compile on the command line. I have deleted the modules and reimported them. I deleted the project them and…
Martin
  • 11,577
  • 16
  • 80
  • 110
9
votes
4 answers

Intellij IDEA doesn't detect file changes, therefore doesn't make before running

I'm having the following class: public class MyClass { public static void main(String[] args) { System.out.println("abc"); } } When I'm running the main method, "abc" is printed, as expected. Then, after modifying "abc" with "def", I got…
Adrian Enciu
  • 133
  • 1
  • 5
9
votes
1 answer

Programmatically get the version of an IntelliJ IDEA plugin

Is there a way to programmatically get the version of an IntelliJ IDEA plugin? I'm creating my own IntelliJ IDEA plugin, and I have set the version property in the plugin.xml(e.g.:3.1.1). I need to get the version to display in…
RoshFsk
  • 305
  • 2
  • 11
9
votes
3 answers

How to import Android Studio (1.0) project into Intellij 14 Ultimate

I have an Android Studio project and I would like to start using Intellij 14 Ultimate to take advantage of some of the cool features it has to offer. When I try to open my project I get a message saying: Gradle Sync Version 1.0.0-rc4 of the Android…
9
votes
1 answer

IntelliJ Debug tool window switches from Console to Debugger

This will probably sound like a minor issue, but it's completely messing up my workflow: I have a microservice that I restart frequently to refresh changes. I start in Debug mode, and use the curvy arrow in the upper left of the Debug tool window to…
orbfish
  • 7,381
  • 14
  • 58
  • 75