在哪里可以找到 Java 的最佳实践文档?
我想知道在哪里可以找到 Java 的最佳实践文档:
- 编码标准
- 错误管理
- 日志记录最佳实践
- 单元测试
- 属性
- 数据访问
等。
I would like to know where I can find best practices documentation for Java for:
- Coding standards
- Error management
- Logging best practices
- Unit testing
- Properties
- Data access
etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Effective Java,第二版
之后,您可以查看特定领域的特定书籍(例如单元测试)。在 Java 中执行操作的方法有很多种,因此与 .NET 不同,许多常见问题通常没有明显的第一种方法 - 存在相互竞争的框架。
Effective Java, Second Edition
After that, you can look at specific books for specific areas (such as unit testing). There are a lot of ways to do things in Java, so unlike say .NET, there is often no obvious first approach to many common problems - there are competing frameworks.
除了良好的文档(您必须阅读、理解并牢记)之外,我建议使用一些静态代码分析工具,如果您违反了某些规则,它们会“及时”“通知”您项目。看看:
它们都集成到各种 IDE 并查看其文档(规则集)是相当有价值的。
但是——它们只是工具。您应该始终质疑他们的警告 - 这反过来又需要一些经验。
Beside good documentation (which you have to read, understand and keep in mind) I recommend using some static code analyzer tools which will 'inform' you 'just in time' on your porject if you violate some rules. Have a look at:
They all integrate to various IDEs and looking at their documentation (rule sets) is quite valuable.
But - they are just tools. You should always question their warnings - which in turn needs some experience.