Questions tagged [intellij-idea-2016]

The popular IDE by JetBrains, specifically in its version '2016'.

61 questions
1
vote
1 answer

How can I jump back to the active editor tab?

Is there a hotkey to jump back to the active editor tab from a tool window? I have a hotkey for the docker tool window (alt+d), but when I switch to that tool window I'm usually in the attached console and once im in there i cant use alt+d to…
red888
  • 27,709
  • 55
  • 204
  • 392
1
vote
0 answers

Intellij not able to connect to the SVN server

I use Tortoise SVN for my subversion related operations. The Tortoise client uses putty I believe as the underlying engine to connect to the network. I have configured a private key in Putty which is synched with my public key loaded on the SVN…
Nick Div
  • 5,338
  • 12
  • 65
  • 127
1
vote
2 answers

IntelliJ IDEA Ultimate: Code completion for JS included via simple script tag

I manage to get perfect code completion when working with npm and ES6 modules – but how do I get code completion when I just have a single HTML with the JS included via script tag?
Rahel Lüthy
  • 6,837
  • 3
  • 36
  • 51
1
vote
3 answers

Gradle Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

I have tried to get this working for three days now in my project and created a simple project to test. I searched around very similar issues on here but didn't find anything that helped with how to solve the error I'm getting. I went even as far as…
Sammy65
  • 627
  • 2
  • 12
  • 28
1
vote
1 answer

How to change Ivy home in IntelliJ IDEA

Changing the Ivy home directory for the command line version of sbt is quite simple. You just have to add the option -Dsbt.ivy.home= to $SBT_HOME/conf/sbtconf.txt. I want to do the same with the Scala extension of IntelliJ IDEA (I…
1
vote
1 answer

IntelliJ IDEA 2016.2.5 false class error

After updating to latest IntelliJ 2016.2.5 (community), when I create new class that requires import of new library in class or some times when I have code errors, it shows a red line under the class name, but after fixing the error, the red line is…
Maytham Fahmi
  • 31,138
  • 14
  • 118
  • 137
1
vote
1 answer

How to know if debugger is out of sync?

When you compile code while debugging Intellij tries to Hot Swap the changes. If it fails it shows a message about its state and ask the developer about a restart of the debug session (to re-run the app). That message disappears after some…
Sebastian Barth
  • 4,079
  • 7
  • 40
  • 59
1
vote
0 answers

Intellij Forgetting to recompile before running tests

I've recently upgraded to intellij 2016.2.4, and it seems that I can't get my test code to recompile before running a test. I've even triggered rebuilding the entire project, and the tests still run and give the same result even if i change what…
Rannick
  • 598
  • 5
  • 19
1
vote
1 answer

Install Guava with Gradle in IntelliJ 2016

What are the steps to get Guava working in IntelliJIdea 2016? And do I put the following in build.gradle? dependencies { compile 'com.google.guava:guava:19.0' }
Gearbox
  • 336
  • 3
  • 15
0
votes
1 answer

How to use correctly mapPartitions function

I'm doing a program with big data and that's why I'm using Spark and Scala. I need to partition the database and for this I use var data0 = conf.dataBase.repartition (8) .persist (StorageLevel.MEMORY_AND_DISK_SER) but then I need to do things in…
Alex100
  • 37
  • 8
0
votes
1 answer

IntelliJ git does not recognize changes in angular project files

I cloned a angular project from existing repository and I can see the folder under IntelliJ. But IntelliJ does not recognize any change in files. I can always commit from command line but its always good to see your changes in the IDE. I tried…
pash
  • 15
  • 2
  • 7
0
votes
1 answer

IntelliJ Start Failed on Mac OS after Update

I just update the IntelliJ IDEA a few minutes ago and now I got the error below when start de software. ERROR: Internal error. Please report to http://jb.gg/ide/critical-startup- errors java.lang.ClassNotFoundException:…
Marcos Leonel
  • 78
  • 3
  • 10
0
votes
0 answers

IntelliJ local jetty run config - setting the debug interface and port

Is there a way to manually set the debugging network interface and port for a local (not a remote) Jetty run configuration in IntelliJ? By default it uses TCP 0.0.0.0 and a random port. Can I override this behavior? Using the normal JVM options…
Moshe
  • 555
  • 3
  • 14
0
votes
1 answer

Adding flink hbase connector dependency

I am trying to connect with Hbase and Druid from flink. I have added following dependency in intellij. https://mvnrepository.com/artifact/org.apache.flink/flink-hbase_2.10 org.apache.flink
0
votes
3 answers

Intellij limit the scope of search/find to current method

I know by clicking on variable name Intellij highlights references to that local variable inside a method. On so many occasions I want to find(Ctrl+F) a string(other than variable name) i.e think of string inside log stmt substring of variable…
Srujan Kumar Gulla
  • 5,721
  • 9
  • 48
  • 78