What's the current version of IDEA?
Location: http://www.jguru.com/faq/view.jsp?EID=538600
Created: Nov 4, 2001
Modified: 2002-03-05 14:46:55.081
Author: Eugene Belyaev (http://www.jguru.com/guru/viewbio.jsp?EID=284384)
IDEA 2.5.2 is the currently available released version.
Comments and alternative answers
IDEA 2.6 will support JDK 1.4 as a target development JDK (IDEA still requires JDK 1.3 to run).
Early Access of IDEA 3.0 is available at http://www.intellij.com/eap/.
| Intellij IDEA version 3.0
Author: Sean Sullivan (http://www.jguru.com/guru/viewbio.jsp?EID=203382), Nov 12, 2002 Intellij IDEA 3.0 is the current release. |
| IntelliJ 3.0.1
Author: Maor C (http://www.jguru.com/guru/viewbio.jsp?EID=805275), Dec 17, 2002 After fixing some bugs, IntelliJ has released the 3.0.1 version on eary December 2002. Versions 3.0 and up run over JRE 1.4.1_01 as their platform and it works great. |
| Current version of IntelliJ IDEA is 8.1 a Maintenance Release
Author: Jeff Grigg (http://www.jguru.com/guru/viewbio.jsp?EID=1254200), Apr 19, 2009 Current version is IntelliJ IDEA 8.1 Maintenance Release. See the following for the latest information on the IntelliJ IDEA IDE: http://www.jetbrains.com/idea/ New features in the latest release: http://www.jetbrains.com/idea/features/newfeatures.html |
I'm trying to run IDEA under Linux and get the segmentation fault. How can I solve this problem?
Location: http://www.jguru.com/faq/view.jsp?EID=539042
Created: Nov 5, 2001
Author: Eugene Belyaev (http://www.jguru.com/guru/viewbio.jsp?EID=284384)
This problem is described in the "KnownIssues.txt" file distributed with IDEA. This is a known issue of the Sun's JDK 1.3.1. To solve the problem, please add the "ulimit -s 2048" command to your startup script. By the way, according to the statistics, gathered from IDEA users, it is more stable under the IBM's JDK. And we also recommend using the KDE window manager.Comments and alternative answers
| I am getting the same problem with sunjdk1.5 and intellij idea 5.1 .Any solution for this?
Author: sateesh AV (http://www.jguru.com/guru/viewbio.jsp?EID=1325416), Jan 18, 2007 I am getting the same problem "Segmentation fault" with sunjdk1.5 and intellij idea 5.1 .Any solution for this? |
I do not want to see *.class files in project views. How can I make them invisible?
Location: http://www.jguru.com/faq/view.jsp?EID=539061
Created: Nov 5, 2001
Author: Eugene Belyaev (http://www.jguru.com/guru/viewbio.jsp?EID=284384)
To avoid class files in project views, you should not add the output path to the classpath manually, since it is already considered by IDEA automatically. Thus, just remove this entry from the classpath list.
How/when does Idea save edited files?
Location: http://www.jguru.com/faq/view.jsp?EID=539241
Created: Nov 5, 2001
Author: Eugene Belyaev (http://www.jguru.com/guru/viewbio.jsp?EID=284384)
Question originally posed by Jason Boehle (http://www.jguru.com/guru/viewbio.jsp?EID=539222
IDEA saves files when you explicitly call File | Save All (or Ctrl-S). Also, it automatically saves all modified files when you switch to other applications.Comments and alternative answers
| Also when you exit IDEA. There is not way to revert to last saved file.
Author: Tal Dayan (http://www.jguru.com/guru/viewbio.jsp?EID=523380), Nov 5, 2001 It also saves files silently (no confirmation dialog box) when you close IDEA. There is no visible way to revert to last saved file except for using the Undo command. |
| Re: Also when you exit IDEA. There is not way to revert to last saved file.
Author: Erb Cooper (http://www.jguru.com/guru/viewbio.jsp?EID=539613), Nov 5, 2001 There is a "Reload from Disk" command under the File menu. If you use this before the file is saved, it will reload from disk. |
| Re: Re: Also when you exit IDEA. There is not way to revert to last saved file.
Author: Tal Dayan (http://www.jguru.com/guru/viewbio.jsp?EID=523380), Nov 5, 2001 Found it. Thanks. |
| Re: Also when you exit IDEA. There is not way to revert to last saved file.
Author: Michael Fuller (http://www.jguru.com/guru/viewbio.jsp?EID=544171), Nov 10, 2001 Is there anyway to change this? I do NOT want it to autosave my files when I exit. |
| Re: Re: Also when you exit IDEA. There is not way to revert to last saved file.
Author: Tal Dayan (http://www.jguru.com/guru/viewbio.jsp?EID=523380), Nov 10, 2001 This has been discussed many times in the mailing list and is one of the main points of confusion for new users.
I think only Intellij can chagne that, they have the source code ;-) |
Does IDEA support Java 1.4 (as IDEA JVM and as target JVM) ?
Location: http://www.jguru.com/faq/view.jsp?EID=540460
Created: Nov 6, 2001
Author: Eugene Belyaev (http://www.jguru.com/guru/viewbio.jsp?EID=284384)
Question originally posed by Tal Dayan (http://www.jguru.com/guru/viewbio.jsp?EID=523380
As of today, IDEA supports JDK 1.4 as a target JDK for your projects. It does not work well with 1.4 being its own JDK yet. It is planned for the next version.Comments and alternative answers
| Well, it doesn't support the assert Statement!
Author: Guido Stinnez (http://www.jguru.com/guru/viewbio.jsp?EID=772283), Feb 26, 2002 In IDEA 2.5: though one can choose the target JDK, the assert statement isn't recognized and therefore yields a lot of incorrect red error bars.
Questions: Though the target jdk compiler has no problems with compiling, i'm not sure on the internal syntax structure used for refactoring etc. |
| Re: Well, it doesn't support the assert Statement!
Author: Lance Ball (http://www.jguru.com/guru/viewbio.jsp?EID=803405), Mar 19, 2002 Have you tried: File | Project Properties | Compiler
Edit the text field labeled, "Additional javac command line parameters:" by adding the following: -source 1.4
Be sure that you have set the target JDK as 1.4 prior to this. The IDE window will display "assert" in red because it is not yet aware of this new keyword. However, the underlying compiler is still just the Sun JDK. You have to tell the JDK to recognize assertions by using this flag even if you're not compiling via IntelliJ. |
How can I avoid the second IDEA icon?
While running IDEA on Windows, I see an additional IDEA icon in the task bar. How can I get rid of it?
Location: http://www.jguru.com/faq/view.jsp?EID=540462
Created: Nov 6, 2001
Modified: 2001-12-13 05:43:42.927
Author: Ann Oreshnikova (http://www.jguru.com/guru/viewbio.jsp?EID=540289)
Question originally posed by Tal Dayan (http://www.jguru.com/guru/viewbio.jsp?EID=523380
To avoid the console window when running IDEA, make the following change in the idea.bat file: instead of using java.exe, use javaw.exe.Comments and alternative answers
Please note that running external tools or Ant scripts might open additional console anyway (if necessary), since they represent separate processes.
To get the above change to work I needed to make the above change from JAVA.EXE to JAVAW.EXE, so the line in my idea.bat looks like this: SET JAVA_EXE=%JAVA_HOME%\bin\javaw.exe
Also I needed to change the line that launches Idea (near the bottom of the bat) to add the Windows command START; so this now reads:
start %JAVA_EXE% %JVM_ARGS% <...> rather than
"%JAVA_EXE%" %JVM_ARGS% <...> This will quickly popup the cmd box which will promptly disapear, as a finishing touch the really fussy can now make a shortcut to modified idea.bat file and change its properties to start minimised.
| Windows' start command
Author: Gabe Hicks (http://www.jguru.com/guru/viewbio.jsp?EID=715312), Jan 9, 2002 If you have java buried in a path with spaces, such as c:\Program Files\jdk1.3.1a, you will need to use the quotations around it as such "JAVA_EXE". When start finds quotes for the first command, it assumes that it is a name for the application you are starting, not a path to it. To overcome this do the following:
start "IDEA 2.5" "JAVA_EXE" <...> |
| Re: Windows' start command
Author: Stephen Kingsland (http://www.jguru.com/guru/viewbio.jsp?EID=821443), Apr 2, 2002 Here's another way to handle spaces in your 'start' command line. Replace this, in idea.bat: "%JAVA_EXE%" %JVM_ARGS% -Xbootclasspath/p:"%BOOT_CLASS_PATH%" -cp "%CLASS_PATH%" -Djdk.home="%JAVA_HOME%" -DCVS_PASSFILE="%CVS_PASSFILE%" %MAIN_CLASS_NAME% %* with this:
set start=%JAVA_EXE% %JVM_ARGS% -Xbootclasspath/p:%BOOT_CLASS_PATH% -cp %CLASS_PATH% -Djdk.home=%JAVA_HOME% -DCVS_PASSFILE=%CVS_PASSFILE% %MAIN_CLASS_NAME% %*
You remove ALL the quotes, and assign the command string to a variable, which you can then run. That way you don't have to worry about putting quotes around every use of an environment variable that could possibly have spaces in it.
Steve |
| Re[2]: Windows' start command
Author: guoyuan zhao (http://www.jguru.com/guru/viewbio.jsp?EID=908703), Jun 10, 2002 My OS is Windows2K professional,I have made those change to my IDEA: 1.java.exe-->javaw.exe 2.start "%JAVA_EXE%" %JVM_ARGS% <...> but when I run the idea.bat i fail and say cannot find -ms16m and other windows components |
| Re[3]: Windows' start command
Author: kiran raj (http://www.jguru.com/guru/viewbio.jsp?EID=912759), Jun 13, 2002 The first change you have made is right. But to the second change make the following changes: Your change looks like : start "%JAVA_EXE%" %JVM_ARGS% <...> It should rather be: start %JAVA_EXE% %JVM_ARGS% <...> The only difference is the quotation marks (""). Please remove it & try again. I am sure that will work out. |
What is the difference between the Project view and the Source view?
What directories should I add to the Project view and which ones to the Source view?
Location: http://www.jguru.com/faq/view.jsp?EID=540463
Created: Nov 6, 2001
Author: Eugene Belyaev (http://www.jguru.com/guru/viewbio.jsp?EID=284384)
Question originally posed by Tal Dayan (http://www.jguru.com/guru/viewbio.jsp?EID=523380
If your project contains Java source files, then you should add root directories corresponding to the default (unnamed) packages containing those files to the sourcepath.For example if your class com.mycompany.mytool.MyClass is located in the "myproject/src/com/mycompany/mytool" directory, then you should add the "src" directory to the sourcepath. This way IDEA "knows" where it's supposed to find other classes given their fully-qualified names.
Project paths include any directories that contain files you intend to work with in your project. For example, you may add the "myproject" directory from the example above, so you will be able to browse various files, not only those located under the "src" directory.
The sourcepath may also contain paths to source files of any third-party library if you want to have those sources available for browsing.
Please also note, that different project-wide operations like compiling project, searching for usages and other will be performed on the files under the project paths only.
Can I run Tomcat under IDEA ?
We are developing web applications using Jakarta Tomcat. Can we run Tomcat under IDEA ? If so, how ?
Location: http://www.jguru.com/faq/view.jsp?EID=541292
Created: Nov 7, 2001
Author: Glen Stampoultzis (http://www.jguru.com/guru/viewbio.jsp?EID=540726)
Question originally posed by Tal Dayan (http://www.jguru.com/guru/viewbio.jsp?EID=523380
One way is to define the environment variable TOMCAT_OPTS, setting it equal to "-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5000" You may then connect to tomcat using the remote debugger.Comments and alternative answers
| Or include the source for tomcat in project ..
Author: Karl Nicholas (http://www.jguru.com/guru/viewbio.jsp?EID=140206), Feb 21, 2002 I included the source for tomcat in the source of the project and then I can get to org.apache.tomcat.startup.Tomcat in the Application Main Class tab. Seems to work OK .. |
| Re: Or include the source for tomcat in project ..
Author: Tom Maxwell (http://www.jguru.com/guru/viewbio.jsp?EID=883249), May 17, 2002 I've put together complete instructions on how to integrate Tomcat 4.0.3 with Intellij IDEA, so that you can start/stop Tomcat and have the output go to the console in IDEA, and you can also debug servlets from within IDEA. You can find these instructions here: |
| Running tomcat inside Idea (for servlet debugging)
Author: raj subramani (http://www.jguru.com/guru/viewbio.jsp?EID=576334), Mar 6, 2002 I got tomcat working through my Idea's IDE (from Intellij) To acheive this:
Finally make sure that you do not compile anything by setting the appropriate dirs in the "Compiler" option PS: Make sure that the JID defined above and the Target JDK for your project are the same (I got an error when 1.3 was in the former and 1.4 was in the latter :-P ) |
| Re: Running tomcat inside Idea (for servlet debugging)
Author: raj subramani (http://www.jguru.com/guru/viewbio.jsp?EID=576334), Mar 6, 2002 Oops ... forgot to metion that this was for Tomcat (Catalina) v4.0.3 |
| Re[2]: Running tomcat inside Idea (for servlet debugging)
Author: KD Rajkumar (http://www.jguru.com/guru/viewbio.jsp?EID=814890), Mar 27, 2002 Hi Raj, Do I have to download Tomcat source seperatley, compile it and then try what you mentioned ? Or can I just select the "Install source too" option when I install Tomcat using the binary distribution ? |
| Re[3]: Running tomcat inside Idea (for servlet debugging)
Author: Hariharan Lakshmanan (http://www.jguru.com/guru/viewbio.jsp?EID=422335), May 7, 2002 You select the install source option when you install the tomcat and that will do it for you. |
| Re: Running tomcat inside Idea (for servlet debugging)
Author: Dominique Plante (http://www.jguru.com/guru/viewbio.jsp?EID=817023), May 17, 2002 Great info! It works! Leave out the space in the VM parameters! The VM parameters should be set to: -Djava.endorsed.dirs="TID\bin;TID\common\lib" -classpath "JID\lib\tools.jar;TID\bin\bootstrap.jar" -Dcatalina.base="TID" -Dcatalina.home="TID" -Djava.io.tmpdir="TID\temp" Here's a useful precursor to what has been written about this: 1. When Idea starts, create a project called tomcat. In the dialog prompting for a file name for the project, enter "Tomcat" for the name. 2. Change the project path to the directory where you installed tomcat 3. The sourcepath entries should all be ok (I haven't run into problems yet) 4. Change the classpath as you see fit. All of the settings can go in the debug dialog (either hit the debug button or choose debug from the run menu) |
| Re[2]: Running tomcat inside Idea (for servlet debugging)
Author: Gregory Livshen (http://www.jguru.com/guru/viewbio.jsp?EID=348855), Nov 25, 2002 I had problems with Tomcat 4.1 and had to take the previous one: 4.0.6 to make it work. It looks like some file names have been changed. Did any body figure it out? |
| Re[3]: Running tomcat inside Idea (for servlet debugging)
Author: Maya Vayner (http://www.jguru.com/guru/viewbio.jsp?EID=1000314), Jan 23, 2003 I would like to resolve this problem and make IDEA 3.0 work with Tomcat 4.1X. Anybody out there got it working? Why doesn't IDEA support running Tomcat 4.1? |
| Re: Running tomcat inside Idea (for servlet debugging)
Author: Philipp Hofmann (http://www.jguru.com/guru/viewbio.jsp?EID=906135), Nov 24, 2003 I can start the Tomcat version 4.1.27 with this settings but I cannot start the newest stable Tomcat version (4.1.29): INFO: Initializing Coyote HTTP/1.1 on port 80 Exception during startup processing java.lang.reflect.InvocationTargetException ... Caused by: java.lang.NoClassDefFoundError: javax/management/MBeanRegistration at java.lang.ClassLoader.findBootstrapClass ... If I add the TID\server\lib to the endorsed.dirs, I get another exception. Do anybody know the correct settings for Tomcat 4.1.29? |
| Re: Running tomcat inside Idea (for servlet debugging)
Author: Aliaksandr Radzivanovich (http://www.jguru.com/guru/viewbio.jsp?EID=1143035), Feb 3, 2004 Well, I managed to get Tomcat working inside Idea using the steps above, but with one additional step. I had to copy tools.jar from %JDK_HOME%/lib to %CATALINA_HOME%/common/lib. Without this file jasper is unable to compile java files produced from jsp files. |
| Re[2]: Running tomcat inside Idea (for servlet debugging)
Author: Aliaksandr Radzivanovich (http://www.jguru.com/guru/viewbio.jsp?EID=1143035), Feb 3, 2004 It was Tomcat 5. I managed to run Tomcat 5 inside Idea. |
| New Atlanta ServletExec Debugger
Author: Marijan J Milicevic (http://www.jguru.com/guru/viewbio.jsp?EID=979770), Aug 8, 2002 you could also hook up ServletExec Debugger, http://www.newatlanta.com/products/servletexec/download.jsp It's easy to use and setup: just add jar file to your source path, and implement main class:
public static void main(String args[])
{
ServletExecDebugger seDebug = new ServletExecDebugger(port);
}
here an screenshot: http://jjooee.media3.net/tmp/idea.gif |
What is the Commander for?
Location: http://www.jguru.com/faq/view.jsp?EID=542514
Created: Nov 8, 2001
Author: Ann Oreshnikova (http://www.jguru.com/guru/viewbio.jsp?EID=540289)
Question originally posed by Jason Boehle (http://www.jguru.com/guru/viewbio.jsp?EID=539222
The two-panel Commander paradigm is a way of representing a hierarchy which provides the following benefits when working with the project elements:Comments and alternative answers
1. In contrast to the tree-mode views, the Commander always shows only one level of hierarchy which is rather convenient in some cases (e.g. when you are permanently working only with one package and don't want or just don't need to view the whole hierarchy-tree)
2. It provides a very convenient interface for copying and moving packages/classes (i.e., when using copy/move operations in one of the two panels, the destination is automatically suggested according to the location currently expanded in the opposite panel).
Some more details on operations available from the Commander can be found in the popup menus that appear when you right-click on different nodes in the commander tree. These menus are context-dependent and allow different operations for the elements of different types.
| Additional commander key shortcuts are shown in the View menu.
Author: Stefan Mainz (http://www.jguru.com/guru/viewbio.jsp?EID=542804), Nov 8, 2001 While the commander is open additional actions are displayed in the View menu. |
Running external tools that contains pipes ?
I want to define an external tool that contains a pipe (e.g. 'find . | fgrep .java'). How do I do that ? I am running on Windows.
Location: http://www.jguru.com/faq/view.jsp?EID=542518
Created: Nov 8, 2001
Author: Ann Oreshnikova (http://www.jguru.com/guru/viewbio.jsp?EID=540289)
Question originally posed by Tal Dayan (http://www.jguru.com/guru/viewbio.jsp?EID=523380
In the Edit Tool dialog, define the following values in the Program and Parameters text fields (the example below uses the parameter referred in the question):
Program: cmd Parameters: /c find . | fgrep .java
Associate file types
How can I associate .java or .jsp (or whatever) file types with IDEA in Windows?
Location: http://www.jguru.com/faq/view.jsp?EID=548346
Created: Nov 15, 2001
Author: Ann Oreshnikova (http://www.jguru.com/guru/viewbio.jsp?EID=540289)
Question originally posed by Nigel Smith (http://www.jguru.com/guru/viewbio.jsp?EID=458605
It is not possible to associate *.java or *.jsp files in Windows so that they are automatically opened in IDEA, since IDEA is not just a java-file editor, but it is a project-based application. Thus, you can only associate the *.ipr (IDEA project) files with IDEA.Comments and alternative answers
| Would be great anyway!
Author: Guido Stinnez (http://www.jguru.com/guru/viewbio.jsp?EID=772283), Feb 26, 2002 Though obviously IDEA is not just a java-file editor, it is a great java-file editor... and the case that one wants to open just one or a few files to peek into a foreign library or to try something with just a few java files. Noone wants to create a whole project for stuff like that. Thus I'm forced to use another editor along with IntelliJ. Please consider this for future versions. Thanx, Guido |
| don't want to have to use another editor
Author: Mark Volkmann (http://www.jguru.com/guru/viewbio.jsp?EID=847479), Apr 21, 2002 Guido is absolutely correct. The current IDEA restriction strongly encourages use of another editor for quick checks of non-project files. This really needs to be addressed! |
| Associating *.java files in Windows
Author: jason weaver (http://www.jguru.com/guru/viewbio.jsp?EID=849870), Apr 22, 2002 I just wanted to show my support for this feature as well. Because I can not quickly and easily work with any type of file I am forced to use another editor (made by one very large company) to do any of my quick editing. *Please* help me cut my ties to that editor by letting me edit any file I want (binaries included, just render them in hex!) in IDEA. Oh, and drag and drop would be nice, too. You have a great editor but this is a feature that really cripples my usability of your product. |
| Re: Associating *.java files in Windows
Author: Sean Shubin (http://www.jguru.com/guru/viewbio.jsp?EID=880048), May 15, 2002 I can see why the project-based nature of Idea makes this one difficult to implement. The problem is that many of Ideas features depend on having a valid project. Once a program trys to be good at two things at once, the design conflicts make it hard to be good at either one. I think it is possible to get the best of both worlds by creating a special case project to handle individual files. For example, in addition to "Default Project Settings", have an item for "Absent Project Settings". Then working with individual files could behave something like this: * Say the user double clicks on the file "C:\temp\MyClass.java" * Idea scans MyClass.java and finds it is in the "com.mycompany.myproject" package * Idea copies the file to c:\idea\no_project\com\mycompany\myproject\MyClass.java * Now idea can use its project based features, from "Absent Project Settings". |
| Please add this feature
Author: Kathryn Benedicto (http://www.jguru.com/guru/viewbio.jsp?EID=817937), Jun 25, 2002 I would like to request this feature as well. Sometimes all I want to do is view or edit the source and use basic features such as in-file search, auto-indent, and color-coded source. In these cases, I wouldn't mind if the refactoring menus were greyed out, or if there's some special icon on the filename tab that indicates that the advanced refactoring and navigation tools are disabled. |
| Jbuilder Can Do It.
Author: Curt Hibbs (http://www.jguru.com/guru/viewbio.jsp?EID=939880), Jul 6, 2002 Borland's JBuilder can do this, so its definitely possible. |
| Plugin
Author: Maor Conforti (http://www.jguru.com/guru/viewbio.jsp?EID=1248165), Jun 10, 2005 If you're using Windows, you may want to try the IDEAFileAssociations plugin |
How to upgrade IDEA ?
I have IDEA install on my system and I want to upgrade to a newer version while preserving my setup. What is the best way to do so ?
Location: http://www.jguru.com/faq/view.jsp?EID=555635
Created: Nov 21, 2001
Author: Chris Bartley (http://www.jguru.com/guru/viewbio.jsp?EID=539385)
Question originally posed by Tal Dayan (http://www.jguru.com/guru/viewbio.jsp?EID=523380
Comments and alternative answers
- Assuming your current IDEA installation is at c:\idea, rename it c:\idea.old
- Install the new IDEA to c:\idea
- Copy c:\idea.old\bin\idea.license to c:\idea\bin\idea.license
- Copy the entire contents of the c:\idea.old\config\keymaps directory to c:\idea\config\keymaps
- Copy the entire contents of the c:\idea.old\config\migration directory to c:\idea\config\migration
- Copy the entire contents of the c:\idea.old\config\options directory to c:\idea\config\options
- Copy the entire contents of the c:\idea.old\config\tools directory to c:\idea\config\tools
- Copy any user-defined templates in the c:\idea.old\config\templates directory (such as user.xml) to c:\idea\config\templates. Be sure to not just copy the entire directory, because you'll overwrite any changes IntelliJ may have made to the standard templates.
| Acutally, I always overwrite.
Author: Jordan Zimmerman (http://www.jguru.com/guru/viewbio.jsp?EID=19522), Nov 21, 2001 When I get a new zip file from IntelliJ, I open it, select all files *except* idea.bin (which I've heavily modified) and extract over the same directory - i.e. overwrite files. The ZIP doesn't overwrite preferences, settings, etc. so this is the quickest way to upgrade. |
| Idea re-install script for Linux.
Author: Christopher Cobb (http://www.jguru.com/guru/viewbio.jsp?EID=717555), Jan 11, 2002
#!/bin/sh
#
# Script to upgrade idea in linux environment.
# New idea download should be in current directory.
# Idea will be installed in /usr/local/idea.
# Preserves existing /usr/local/idea/bin/idea.sh.
#
idea_install_file=`ls -1tr idea*.tar.gz | tail -1`
test -f "$idea_install_file" ||
{ echo "upgrade_idea.sh: idea install file must be in current directory"; exit 1; }
tar zxf $idea_install_file
idea_staging_dir=`ls -1trd idea*/ | tail -1`
cd $idea_staging_dir >/dev/null 2>&1 ||
{ echo "upgrade_idea.sh: can't change to $idea_staging_dir"; exit 1; }
trap 'cd ..; rm -rf $idea_staging_dir' 0
idea_install_dir=/usr/local/idea
if [ -x $idea_install_dir/bin/idea.sh ]; then
find -depth | grep -v bin/idea.sh | cpio -pdum $idea_install_dir 2>/dev/null
else
find -depth | cpio -pdum $idea_install_dir 2>/dev/null
fi
echo "New version of idea installed in /usr/local/idea"
|
How can I change the order of the views on the left margin ?
How can I change the order of the view names displayed in the left margin (Project, Structure, Source, etc) ?
Location: http://www.jguru.com/faq/view.jsp?EID=557858
Created: Nov 22, 2001
Author: Eugene Belyaev (http://www.jguru.com/guru/viewbio.jsp?EID=284384)
Question originally posed by Tal Dayan (http://www.jguru.com/guru/viewbio.jsp?EID=523380
This is currently not possible. The next version of IDEA will provide a more flexible window configuration functionality.
Is there a way to see all files in the Project view ?
Our project has .gif, jpeg, .pdf, and other file types but they are not shown in the Project view. Can I instruct IDEA to show all file types ?
Location: http://www.jguru.com/faq/view.jsp?EID=557860
Created: Nov 22, 2001
Author: Eugene Belyaev (http://www.jguru.com/guru/viewbio.jsp?EID=284384)
Question originally posed by Tal Dayan (http://www.jguru.com/guru/viewbio.jsp?EID=523380
Next version will support it. Currently, there is no way to let IDEA show binary files in the project views.
What is refactoring ?
IDEA's feature list mentions 'refactoring'. What is it and where can I learn more about it ?
Location: http://www.jguru.com/faq/view.jsp?EID=566366
Created: Nov 28, 2001
Author: Eugene Belyaev (http://www.jguru.com/guru/viewbio.jsp?EID=284384)
Question originally posed by Tal Dayan (http://www.jguru.com/guru/viewbio.jsp?EID=523380
"Refactoring is the process of changing a software system in such a way that it does not alter the external behavior of the code yet improves its internal structure. It is a disciplined way to clean up code that minimizes the chances of introducing bugs. In essence when you refactor you are improving the design of the code after it has been written." Refactoring: improving the design of existing code / Martin Fowler (Addison-Wesley, 2000).
Mouse wheel handling
Is it possible to enable mouse wheel handling with IDEA 2.5 under windows ?
I known that jdk 1.3 does not handle mouse wheel, but since I've seen a mousewheel.dll file in the idea/bin directory, I'm wondering if it is possible to use it...
Location: http://www.jguru.com/faq/view.jsp?EID=585886
Created: Dec 15, 2001
Author: Ann Oreshnikova (http://www.jguru.com/guru/viewbio.jsp?EID=540289)
Question originally posed by Xavier Hanin (http://www.jguru.com/guru/viewbio.jsp?EID=585169
Mouse-wheel in IDEA works only on Windows NT/2000/XP. It is not supported for Windows 9x.Comments and alternative answers
| Mousewheel also works using Linux
Author: Michael Hirsch (http://www.jguru.com/guru/viewbio.jsp?EID=745972), Feb 4, 2002 It works fine for me under Linux, too. I'm running Mandrake 8.1, but I don't think that affects anything. I expect it will work for any distribution that works with a mouse wheel. |
| Mouse scroll wheel support in Linux, J2SE 1.4
Author: Colin Bennett (http://www.jguru.com/guru/viewbio.jsp?EID=500093), May 6, 2002 The scroll wheel support in MS Windows is done through a DLL and native code, which comes with the Windows version of IDEA. However, using J2SE 1.4, which provides scroll wheel support to all Swing applications, the scroll wheel works in Linux. J2SE 1.4 also has much, much better graphics performance, noticable in simple scrolling through a source file with IDEA, which is very smooth in 1.4. And the fonts look cleaner and crisper. The only problem is that as of now (6 May 2002) the latest versions of IDEA (codenamed "Ariadna", this is builds 600-620+) do not function with J2SE 1.4. Older builds, such as 545 ("Pandora") do still work. You will not get some of the new features, such as highlighting usused variables and methods. Feel free to encourage IntelliJ to switch to J2SE 1.4. |
| why not on win 9x ?
Author: Peter Schäfer (http://www.jguru.com/guru/viewbio.jsp?EID=905163), Jun 6, 2002 hm ... I've seen (and even written myself) Swing applications with mouse wheel support on Windows 9x. So what's the reason why it isn't supported ? |
| How to implement Java application to recognize Mouse Wheel?
Author: Gamas Sugiarto (http://www.jguru.com/guru/viewbio.jsp?EID=910474), Jun 11, 2002 Hi, I am wondering how do you actually implement the Mouse Wheel listener in JDK 1.3.1_03, is that possible? How does Java utilize mousewheel.dll actually? Does mousewheel.ddl that resides in INTELLIJ_HOME/bin useable for the application that IntelliJ build or is it only useable for IntelliJ? Thank you very much. |
| mouse-wheel *should* work under win2000, but...
Author: Lars Luehn (http://www.jguru.com/guru/viewbio.jsp?EID=917352), Jun 18, 2002 I work with
Can I 'force' mouse wheel support somehow? How can I check where the mouse wheel stucks? |
How do I get IntelliJ to generate serialVersionUID for me?
Location: http://www.jguru.com/faq/view.jsp?EID=1340951
Created: Jun 27, 2007
Author: John Zukowski (http://www.jguru.com/guru/viewbio.jsp?EID=7)
You can add an inspection warning that will then offer a prompt to generate. You can find the option several layers deep under Settings. Settings -> Errors -> Serialization issues -> Serializable class without 'serialVersionUID'Comments and alternative answers
| about serialVersionUID
Author: dinesh patri (http://www.jguru.com/guru/viewbio.jsp?EID=1346972), Sep 12, 2007 hi , when i am using Eclipse, there will be always a warning saying that serialVersionUID is not initialised... what is serialVersionUID, why and when is it required. Anyone Kindly clear my doubt.. thanks in advance thanks and regards dinesh |
How do you turn off the use of CommandLineWrapper so that IntelliJ will include all your JAR files on the command line?
Location: http://www.jguru.com/faq/view.jsp?EID=1533847
Created: Feb 8, 2010
Author: John Zukowski (http://www.jguru.com/guru/viewbio.jsp?EID=7)
To do so, open the .iws file for the project and look for the line setting the dynamic.classpath property to true:<property name="dynamic.classpath" value="true"/>With the project closed, edit the project file to set it to false:<property name="dynamic.classpath" value="false"/>Then reopen project. Your runtime command line will no longer include CommandLineWrapper.