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
9
votes
1 answer

Replace getters with property with IntelliJ Structural Search and Replace

Due to changes in a library I'm using, the getters were replaced with direct access to the property. Eg: public class MyLibraryClass { private String field; public String getField() { return field; } } has become public class MyLibraryClass…
kierans
  • 2,034
  • 1
  • 16
  • 43
9
votes
1 answer

Intellij 13 merge conflicts dialog loses gets stuck

I am having a problem with Intellij 13 when merging conflicts. When I apply my last merge change, Intellij tries to show me the "Save and finish" dialog, but apparently the merge window remains above that one (which loses its focus). At that point I…
Roberto
  • 1,450
  • 1
  • 15
  • 32
8
votes
5 answers

Intellij - Cannot start maven service - ExecutionException

I'm using Intellij 13.1.5 on Ubuntu 14.0.4 (amd64), Maven 3.0.5, Java Oracle 1.7.0_72 I noticed some irregularities with maven whilst using Intellij namely dependencies added and removed where not reflected in the module or in the External Libaries…
Simon B
  • 1,784
  • 3
  • 21
  • 26
8
votes
1 answer

Running Tomcat Server with an artifact created by Maven into IntelliJ 13

It it is possible generate an artifact with maven before a Tomcat Server Run/Debug Configuration of IntelliJ 13? I have tried to do something like this, using Maven profiles, in order to build the system for Development, Preview and Production…
Filipe
  • 1,189
  • 4
  • 15
  • 30
8
votes
1 answer

How to set system properties in IntelliJ IDEA 13 gradle task?

I have a Spring Boot project with gradle build tool. The JDBC url, username and password are kept in a property file which is not part of application it's a external property file, the path of the property file is taken from system properties as…
seenukarthi
  • 8,241
  • 10
  • 47
  • 68
7
votes
3 answers

Intellij IDEA, control page up, page down scroll size

I am not satisfied with the scrolling behaviour in intellij for page up, page down. It doesn't feel right. It always feels as if I get out of the scope. Is it possible to adjust the scroll size of page up, page down? Perhaps to half a page or…
mjs
  • 21,431
  • 31
  • 118
  • 200
7
votes
0 answers

Intellij IDEA 13 Exit Button

How do I stop a processing running in intelliJ such that it calls the shutdown hooks? This is the button that I'm looking for, but my "Run" area is missing this button. After I accidently hit stop, I have to go manually kill the process. How can I…
nitsujri
  • 1,448
  • 2
  • 16
  • 29
7
votes
1 answer

How to use Data Type Renderers list for byte[] in IntelliJ

So I have all these byte[]'s, and their encoding could be one of many different formats, depending on where I'm currently debugging. I'd like to be able to toss together a list of projections for the byte array. I'm using IntelliJ's Data Type…
Kenny
  • 129
  • 2
  • 11
7
votes
4 answers

IntelliJ IDEA 13.1 keeps asking credentials for SVN

I'm working with IntelliJ IDEA 13.1.4 and trying to get it to work with Subversion. My working copies are in the Subversion 1.8 format, and I can commit/update/etc. perfectly with TortoiseSVN 1.8. When I try to do the same thing in IDEA, it keeps…
7
votes
3 answers

intelliJ android UI rendering problems - Missing Library

After much headbashing i seem to have got my first hello world app running within IntelliJ ultimate. I downloaded the lastest ultimate edition today. When I try and open the main.xml in the UI designer I get the error below. Can anyone help? I…
RNJ
  • 15,272
  • 18
  • 86
  • 131
7
votes
2 answers

Basic new RESTful project in IntelliJ fails to run, annotation scan failure?

I'm running IntelliJ 13.1.3. I create a new project, check RESTful Web Service (2.2), check the box for Generate server code sample, click next, enter a project name, and click finish. I now have a sample project with code. As I have changed nothing…
Douglas
  • 5,017
  • 1
  • 14
  • 28
7
votes
0 answers

Run Google AppEngine Application on IntelliJ 13

I have the guestbook appengine application working in the command line. For faster development I need to work in the IntelliJ IDEA IDE. But, I can't run the application. I guess the problem is configuration. How should I configure the IDE? When I…
userfb
  • 546
  • 4
  • 9
6
votes
1 answer

Custom sbt configuration with Intellij auto import

I can't get the embedded sbt plugin (with auto import enabled) in Intellij (13.1) to recognize custom sbt configurations. I have the follow setup in my sbt build file: lazy val EndToEndTest = config("e2e") extend (Test) private lazy val…
Tobias
  • 1,062
  • 1
  • 9
  • 15
6
votes
2 answers

Intellij code completion, showing method/constructor parameter types and variable names

I find this extremely annoying that you often do not get help with figuring out the parameter signatures of methods and contructors when you have already written the first parameter. Instead Intellij will show the variables available to you in your…
mjs
  • 21,431
  • 31
  • 118
  • 200
6
votes
3 answers

"No Gemfile found" error in Run configurations for IntelliJ + Ruby plugin

I've tried to configure my IntelliJ 13.1.5 + Ruby 6.5.2 plugin to run RSpec tests. When I go to Run -> Edit Configurations and check the checkbox "Run the script in context of the bundle (bundle exec)" in Bundler tab, I get error "Run configuration…
LukasMac
  • 848
  • 1
  • 8
  • 20