Java project folder structure in IntelliJ IDEA

后端 未结 4 477
别跟我提以往
别跟我提以往 2021-02-04 03:17

What is an acceptable folder structure for Java projects in IntelliJ IDEA?

Multiple sources (like this) suggest the following structure:

.
│ .idea    
└─         


        
4条回答
  •  心在旅途
    2021-02-04 03:46

    Your configuration in the IntelliJ's File > Project Structure page will be overridden by the project's pom.xml after every clean install. To prevent this, you need to configure the source directory in pom.xml as below:

    src/main/java
    

提交回复
热议问题