如何确定Java应用程序的源代码文件夹结构(bin,lib,src,config等)?我主要想开发与数据挖掘和信息检索相关的应用程序。是否有我可以了解更多信息的来源或书籍?
答案 0 :(得分:5)
Java和Python不一样。
对于Java,它取决于您使用的构建自动化工具。如果您决定使用Maven,它会建议您使用源文件夹代码结构。请参阅Introduction to the Standard Directory Layout。 Ant使用另一个目录结构:Building with Ant: Directory Structure。
至于Python,请看这个问题:What is the best project structure for a Python application?