Questions tagged [intellij-13]

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

303 questions
6
votes
3 answers

Intellij IDEA: Pinned tabs, close will close. How to disable?

I have a hotkey for closing tabs, CTRL + W but it closes even pinned tabs. So does the [X] on the tabs. And so does the right click -> close tab. Is this a bug? It didn't use to be like this. I am on intellij 13
mjs
  • 21,431
  • 31
  • 118
  • 200
6
votes
2 answers

Is there a way to see a map of all @RequestMapping URLs in Intellij IDEA?

Is there a way to see all @RequestMapping annotations as map of all requests/URLs, ideally with quick links to whichever Controller/method handles the URL? In Spring 2 (before annotations) XML config (SimpleUrlHandlerMapping) could be used as such…
Aramir
  • 317
  • 2
  • 9
6
votes
2 answers

On Intellij 13, executable jar created is invalid or corrupted

I tried to create an executable jar from my project on Intellij 13 (win8), following these answers How to build jars from IntelliJ properly? and execute the jar created, then I get "Error: Invaid or corrupt jarfile" followed by the path of the…
Arthur Julião
  • 849
  • 1
  • 14
  • 29
5
votes
1 answer

How to use intellij debugger to print logs?

How can we print logs in the console without actually adding sysout or logs to the code in intellij idea debugger ?
Robert Ravikumar
  • 912
  • 2
  • 11
  • 29
5
votes
1 answer

How to review git pull requests (hosted on bitbucket) in intelliJ?

How can I review the git pull requests in intelliJ Idea (2018.3) and check the compile time, test run impact and other IDE features before approving or rejecting?
5
votes
2 answers

Intellij IDEA warnings for @Nonnull annotation in unit tests

Let's say I have a method with some of the parameters annotated with javax @Nonnull annotation. public Something supply(@Nonnull SomeObject someObject) { (...) if (someObject == null) throw new ValidationException("Required parameter is…
mareckmareck
  • 1,560
  • 13
  • 18
5
votes
2 answers

Showing error: Unknown HTML tag

So i just started using Phpstorm and I am trying to 'correct' my code so there are no errors from the IDE. I have the following method below and all my xml tags are highlighted with the 'Unknown HTML tag' What is the best way to correct…
Chris
  • 2,166
  • 1
  • 24
  • 37
5
votes
2 answers

Pass custom code style xml to gradle idea plugin

Is there any way to tell the gradle idea plugin to use a custom code style xml when generating the project's files? I can always copy the xml into "~/Library/Preferences/IntelliJIdea13/codestyles" and then change the code style once I import the…
5
votes
5 answers

Where does IntelliJ put .class files when it compiles during typing

Is IntelliJ compiling all the time since it tells me with red squiggly lines when there is an error? (in addition to the autocomplete features) Or is it doing some sort of psuedo compiling? If it is doing legit compiling, where does it put these…
Carlos Bribiescas
  • 4,197
  • 9
  • 35
  • 66
5
votes
1 answer

IDEA 13 regex checker in Scala

There is cool feature in IDEA to check your regex in Java. When you hit Alt+Enter over your selected pattern, you get: And if you choose Check RegExp, you get something like this: But if you try same thing using Scala there is no Check RegExp…
4
votes
1 answer

How to create an empty JavaFX project in IntelliJ

Every time I create a new JavaFX project in IntelliJ it loads a simple HelloWorld project in it. How can I make it empty instead (without the need to delete those .java files every time)? Also how can I choose to create the project without a…
4
votes
3 answers

Google OR-Tools in Intellij: UnsatisfiedLinkError

I am setting up a java framework that should use the Google OR-Tools. The code below compiles successfully, but throws an exception at runtime: Exception in thread "main" java.lang.UnsatisfiedLinkError:…
BJPrim
  • 338
  • 5
  • 20
4
votes
2 answers

Android Studio (Intellij) keeps adding second line to modules.xml

In my ~/project/.idea/modules.xml file the 8th line is always repeated. If I delete it, the line is put back whenever I save (auto-save).
SMBiggs
  • 11,034
  • 6
  • 68
  • 83
4
votes
1 answer

Intellij and sbt 0.13.5 "URI has an authority component"

I'm working on a play framework project using Java as well as Amazon Web Services. This is my build.sbt: name := """RegistrationEndpoint""" version := "1.0" lazy val root = (project in file(".")).enablePlugins(PlayJava) scalaVersion :=…
Regress.arg
  • 352
  • 6
  • 16
4
votes
2 answers

Lua and IntelliJ

Do someone know a good plugin to program Lua using IntelliJ? I'm using the one from sylvanaar but it is painfully slow. UPDATE: slowness due to code styling. UPDATE 2: I gave up on using LUA on IntelliJ I found that https://studio.zerobrane.com/ is…
GoGoLander
  • 349
  • 3
  • 12