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
13
votes
5 answers

module jdk.compiler does not "opens com.sun.tools.javac.processing" to unnamed module @4bae33a6

I cloned this Project from Github https://github.com/PacktPublishing/Java-Machine-Learning-for-Computer-Vision.git I am going to use the FaceRecognizition from this project. But as soon as I try to run this in IntelliJ I get this error java:…
13
votes
3 answers

Remove unused IntelliJ IDEA features?

Is there any possibility to remove unused features from IntelliJ IDEA 14? Purpose: better performance ease of use Some examples for unused features: File > New Project... - Griffon, Flash File > Settings... > Editor > Code Style - ActionScript,…
ROMANIA_engineer
  • 54,432
  • 29
  • 203
  • 199
13
votes
3 answers

Why IntelliJ Idea cannot find location of GO SDK?

I downloaded go1.4.darwin-amd64-osx10.8.tar.gz and extract it on my local directory. Based on what Installing to a custom location says I added GOROOT in env variable. Based on what Test your installation says I created a go file. I finally ran it…
Hesam
  • 52,260
  • 74
  • 224
  • 365
12
votes
4 answers

"log has private access" error when using Slf4j annotation and Lombok in IntelliJ

I'm using Lombok to add logging to my Java applications. I've been using this for some time, but since I upgraded my IDE from IntelliJ 13 Community edition to 14 Ultimate, I get the following compile errors (using maven): error: log has private…
Dieudonné
  • 543
  • 1
  • 4
  • 16
12
votes
2 answers

Intellij indents 4 spaces when I have configured it to do 2 spaces (LESS)

On Intellij IDEA 14, I have tried to set my preferences in Editor > Code Style > LESS to do 2 space indents but no matter what I do, my code ends up getting formatted with 4 space indents. How do I get it to do 2 space indents for LESS?
Muhd
  • 24,305
  • 22
  • 61
  • 78
12
votes
3 answers

Exception in thread "main" java.lang.ClassNotFoundException:

I recently installed intellij IDEA 14.0 and to make sure everything was working I created a simple Hello World program. I do not understand why the output is not correct and why I am getting this error. If someone could please help that would be…
kayanushpatel
  • 471
  • 2
  • 5
  • 6
12
votes
1 answer

Intellij code indentation for builders

Currently if I write use the following builder class Intellij will indent the following way SomeClass.create() .someMethod() .someOtherMethod(); What I would like it to do is indent like this: SomeClass.create() .someMethod() …
Cheetah
  • 13,785
  • 31
  • 106
  • 190
11
votes
2 answers

What are the `^let` annotations in Android Studio / IntelliJ?

In a let block, I sometimes see ^let annotations before my statements, and it's not clear to me what they mean or why they are there. Is it to indicate that a value will be returned as the value of the let call? Screenshot:
aaaidan
  • 7,093
  • 8
  • 66
  • 102
11
votes
2 answers

Error in running Spark in Intellij : "object apache is not a member of package org"

I am running a Spark program on Intellij and getting the below error : "object apache is not a member of package org". I have used these import statement in the code : import org.apache.spark.SparkContext import org.apache.spark.SparkContext._ …
Learner
  • 113
  • 1
  • 1
  • 4
11
votes
3 answers

Spring boot hot deployment for templates and resources under IntelliJ

Is anyone aware of a mechanism to get hot deployment for resources and template working under IntelliJ 14.0.2 for a Spring Boot application. I know that full Spring Boot support is scheduled for 14.1 but I have a project that I converted over from a…
thedoctor
  • 1,498
  • 1
  • 12
  • 12
11
votes
1 answer

How do I run the code from a scratch file in IntelliJ 14?

I've created a simple Java scratch file containing a class named "TestGenerics" containing some code and a main method. The code seems to be fine, however when I try to run it (by right clicking > Run 'TestGenerics.main()', I get this error:…
danielgpm
  • 1,609
  • 12
  • 26
10
votes
2 answers

How to force Intellij IDEA to use only one gradle daemon?

I know it may look like a duplicate of How to disable Gradle daemon in IntelliJ Idea?, but I don't want to completely disable gradle daemon. I just want to use only one daemon, not many of them. The problem I have is that to successfully run some…
barteks2x
  • 1,275
  • 12
  • 24
10
votes
1 answer

IntelliJ IDEA: Searching among opened files

Sometimes we need the searching among opened files in IntelliJ IDEA. For example: class="redtext" Usually I have a large number of opened files and the manual searching takes a lot of time (Ctrl+F in every html-file). Is there a faster way to do…
DmitMedv
  • 980
  • 3
  • 11
  • 22
10
votes
4 answers

Why is the font in the new IntelliJ IDEA 14.1 not rendering properly?

I've just upgraded IntelliJ IDEA (ultimate) to Version 14.1 and the font used in the Project View, Menus and Dialogs seems not to be rendering correctly. I exported the same settings from my 14.0.3 version just in case, although they seem identical,…
jbx
  • 21,365
  • 18
  • 90
  • 144
10
votes
3 answers

Intellij IDEA Tomcat Application Server was not connected before run configuration stop, reason: Unable to ping server at localhost:1099

I am using Intellij Ultimate edition 14.0.2 Working on a Java project using Maven as my build tool. We are getting this error when attempting to launch my project via Tomcat server. Application Server was not connected before run configuration…
CalebKing3
  • 154
  • 1
  • 1
  • 10