英文:
Go equivalents for the Java Ecosystem
问题
我正在尝试在一个项目中开始使用Go(golang),由于我有Java的背景,我想知道在Go生态系统中是否有以下的等价物:
- IDE(看起来Eclipse和IDEA都有Go插件)。当我上次查看时,Eclipse的Go插件没有Java插件那么成熟。
- 是否有类似于Maven的依赖管理工具?
- Jenkins/Luntbuild的持续集成等价物?
- 有没有像Guava这样的知名库?
还有其他的提示/建议吗?
英文:
I'm trying to start using Go (golang) for a project and coming from a java background, I was curious if there are equivalents for the following in the Go ecosystem:
- IDE (Looks like both Eclipse and IDEA have Go plugins). The Eclipse Go plugin was not as refined as the Java one when I looked last.
- Is there a Maven equivalent for dependency management?
- Jenkins/Luntbuild equivalent for continuous integration?
- Any well known libraries like Guava?
Any other tips/suggestions?
答案1
得分: 1
-
Sublime Text 2 或 Vim
-
Go 的依赖关系由你的导入语句决定,这意味着你的代码导入的内容就是它所依赖的内容
-
Travis CI
-
你可以参考golang主页
英文:
-
Sublime Text 2 or Vim
-
Go dependencies are determined by your import statements which means whatever your code imports is what it depends on
-
Travis CI
-
you can refer to the golang homepage
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论