用户登录
用户注册

分享至

源文件夹和(普通)文件夹有什么区别

  • 作者: Baby_城会玩
  • 来源: 51数据库
  • 2023-01-14

问题描述

I'm following this guide: Spring MVC and I realized that I do not know the difference between a source folder (src) and a plain folder.

I'm using eclipse, so maybe the difference is only useful in an IDE?

Also, I've noticed that java classes tend to go in src folders; whilst every other file goes into a plain folder (or the project root folder).

So, What is the significance of the source folder (src)? Why use a source folder over a plain folder?

Thanks!

解决方案

A source folder is marked by Eclipse as containing java sources. Then, when you compile your project Eclipse will look for your source code into all your source folders.

You can make any folder become a source folder adding it to the java build path. Thus, next time you compile your project Eclipse will also look for java classes in that folder.

软件
前端设计
程序设计
Java相关