Russell Bateman

- Total activity 58
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 18
-
Created 2019.3.1 fails to back-indent braces
AnsweredAnnoyingly, 2019.3.1 made the Java editor refuse to back-indent braces for me in the way that IDEA has always worked (for me, at least). For example, I start with: if( VERBOSE ){ System.out.printl... -
Edited VM options made sticky...
AnsweredIs there any way for `Run -> Edit Configurations -> JUnit -> All in <project>` to become sticky such that, if I have: `ea -Dlog4j.configuration=log4j-development.xml` set, the next time I right-cli... -
Created 2019.2 editor behavior change
AnsweredThis concerns the behavior of the editor (in Java) when I hold down the shift and control keys, then press right arrow. For example, I used to be able to place my cursor at the end of line 1 (below... -
Created Missing package paths/symbols from both command-line Maven build and IDEA build
AnsweredI saw another, similar post from 2016-1018 on this. `External Libraries` at `Project` pane's bottom clearly shows that I have the JARs containing the package paths and symbols that turn up missing ... -
-
Created Running JUnit tests in IDEA does not respect/consume pom.xml configuration of maven-surefire-plugin
AnsweredIn pom.xml I have: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <sy... -
Created Tomcat deployment and use in IDEA works, but 404 when deployed to server
AnsweredI do Run->Edit Configurations and deploy my web application to Tomcat in IDEA. It works perfectly for my GET and POST. When I take the resulting WAR file and drop it into a "real" systemd Tomcat se... -
Created Stop organizing imports in IDEA editor
AnsweredI guess I'm different from all other IDEA users who've asked questions on the editor organizing imports because they want that: I don't prefer the order of imports automatically imposed in my sourc... -
Created JUnit library present; it's in pom.xml, it's in Project -> External Libraries, it's in Project Settings -> Libraries, it shows when typing Ctrl-N, etc., but symbol TestName not found
AnsweredI'm utterly baffled. I do not have this problem in various other projects, but I cannot seem to fix it in this one. Is this illustration enough? -
Created Quiet IDEA about using StringBuilder instead of String concatenation
AnsweredI haven't found a way to quiet IDEA from bugging me to toss using StringBuilder in favor of simple String concatenation. I guess I ask because I'm a little obsessive-compulsive and like to leave my...