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
51
votes
4 answers

Disable copying entire line when nothing is selected in Intellij

I have recently started using Intellij and I noticed that by default, when you do ctrl+c for copying something when you have nothing selected, it copies the entire line into the clipboard overriding what I had in there before. This is really…
Alexandre Thenorio
  • 2,288
  • 3
  • 31
  • 50
46
votes
11 answers

Unable to import maven project in IntelliJ14

I'm trying to import the Maven projects from IntelliJ button (the one with the arrows in circle), but I get the following message "Unable to import maven project. See logs for details", as shown in the following picture If I go into the log, I…
JeanValjean
  • 17,172
  • 23
  • 113
  • 157
45
votes
7 answers

java.io.FileNotFoundException: class path resource cannot be opened because it does not exist

I am trying to set the configuration location for my Project but I keep getting the following error: java.io.FileNotFoundException: class path resource [main/resources/app-context.xml] cannot be opened because it does not exist I have my…
Rob_kael
  • 469
  • 1
  • 4
  • 4
44
votes
3 answers

intellij 14 does not show all open files

In Intellij 13 the main code window showed all my open classes (their names flowed onto multiple lines), but now in Intellij 14 it shows a little dropdown and only shows them on one line. Is there a setting I can change to get it to flow to multiple…
CorayThan
  • 17,174
  • 28
  • 113
  • 161
41
votes
7 answers

Where are IntelliJ scratch files located?

In IntelliJ IDEA 14, we can create scratch files from Tools > New Scratch File... Are they stored in some temporary files? If the answer is yes, where are they? Attempts: 1) I pressed right click > Copy Reference and I pasted…
ROMANIA_engineer
  • 54,432
  • 29
  • 203
  • 199
41
votes
7 answers

How do I turn on line numbers permanently in IntelliJ 14?

How do I permanently turn on line numbers in IntelliJ IDEA 14? This post is outdated: how-can-i-permanently-have-line-numbers-in-intellij
JBaczuk
  • 13,886
  • 10
  • 58
  • 86
36
votes
3 answers

"UML Support" Plugin for IntelliJ

I must be missing something. I am reading this article and it says that there is a plugin called "UML Support" which is enabled by default. I didn't have it, so I went to Preferences > Plugins and see no such plugin. Searching didn't show it as…
boltup_im_coding
  • 6,345
  • 6
  • 40
  • 52
36
votes
6 answers

How do I set user.email and user.name in Intellij 14 with GIT integration?

I have IntelliJ 14 with GIT integrated. git push command shows the Author as unknown. How do I set the following two parameters in my IntelliJ IDE? git config --global user.name "Sam Smith" git config --global user.email sam@example.com
maverick
  • 549
  • 2
  • 10
  • 18
34
votes
7 answers

How to change project language level for all project in Intellij

I am using Intellij. It is good, but when I create a new project or import a project the default project language level set to 6 (@override in interfaces). But I want to set it 8 (Lambdas, type annotations etc). How can I do that? I have tried…
Emdadul Sawon
  • 5,730
  • 3
  • 45
  • 48
34
votes
8 answers

Maven 3.3.1 Config Error in IntelliJ Idea 14

I got the maven .tar file from http://maven.apache.org/download.cgi, and installed it to the path /usr/local/. I run the mvn -version command in the new window, the output is correct. Below is my .bash_profile in my home directory: …
Frank
  • 655
  • 1
  • 8
  • 16
33
votes
3 answers

Auto-generate Javadoc comments in intelliJ?

Is it possible to auto-generate Javadoc comments for each method in one class in IntelliJ IDEA?
Madan
  • 380
  • 1
  • 4
  • 11
29
votes
2 answers

Cannot run program, error=7, Argument list too long

I faced error while running unit test in intellij. Below is error message. Error Error running CLASS_NAME.TEST_METHOD_NAME: Cannot run program "JAVA_PATH/bin/java" (in directory "WORKSPACE_PATH"): error=7, Argument list too long Below is the…
devsda
  • 4,112
  • 9
  • 50
  • 87
28
votes
5 answers

What does the yellow background on filename mean in Intellij?

I think it might have something to do with asynchronous tasks but I don't know for sure. Could someone please clarify this for me? Also what do the yellow frames mean when you are debugging?
Ashwin Praveen
  • 661
  • 2
  • 10
  • 20
28
votes
3 answers

How to setup IntelliJ IDEA 14 to add "final" keyword where possible?

I would like to setup my IntelliJ IDEA 14 for automatic final keyword adding in all possible places (parameters, fields, etc.) to the existing Java class. I found some solutions with macros and shortcuts but I would like setup IntelliJ to add the…
Piotr Pradzynski
  • 4,190
  • 5
  • 23
  • 43
26
votes
3 answers

IntelliJ autocomplete to replace the function name

I've switched from Eclipse to IntelliJ and there is something which I couldn't find yet nor google: How to get the autocomplete to replace the name of the function? In Eclipse, it would be the ctrl+enter functionality. For example,…
Qualaelay
  • 713
  • 2
  • 10
  • 21
1
2
3
55 56