ProjectOn this page: BasicsWhatever you do in IntelliJ IDEA, you do that in the context of a project. A project is an organizational unit that represents a complete software solution. It serves as a basis for coding assistance, bulk refactoring, coding style consistency, etc. Your finished product may be decomposed into a series of discrete, isolated modules, but it's a project definition that brings them together and ties them into a greater whole. Projects don't themselves contain development artifacts such as source code, build scripts, or documentation. They are the highest level of organization in the IDE, and they define project-wide settings as well as collections of what IntelliJ IDEA refers to as modules and libraries. Project format and filesIntelliJ IDEA stores the configuration data for projects and their components in plain text XML files making it easy to manage and share project configuration data with others. Two formats are available for storing the project configuration data: directory-based and file-based. Directory-based formatWhen the directory-based format is used, there is a The Almost all of the files contain information core to the project itself, such as names and locations of its component modules, compiler settings, etc. Thus, these files may (and should) be kept under version control. The exception is the file File-based format
If the file-based format is used, there are two configuration files in the project directory.
One of the files has the
The The file-based format can be converted into the directory-based, see Converting Projects Into Directory-Based Format. See AlsoLast modified: 6 April 2015
|
|
来自: 小胡子的是也 > 《IntelliJ IDEA》