Go在Java生态系统中的等价物

huangapple go评论80阅读模式
英文:

Go equivalents for the Java Ecosystem

问题

我正在尝试在一个项目中开始使用Go(golang),由于我有Java的背景,我想知道在Go生态系统中是否有以下的等价物:

  1. IDE(看起来Eclipse和IDEA都有Go插件)。当我上次查看时,Eclipse的Go插件没有Java插件那么成熟。
  2. 是否有类似于Maven的依赖管理工具?
  3. Jenkins/Luntbuild的持续集成等价物?
  4. 有没有像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:

  1. 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.
  2. Is there a Maven equivalent for dependency management?
  3. Jenkins/Luntbuild equivalent for continuous integration?
  4. Any well known libraries like Guava?

Any other tips/suggestions?

答案1

得分: 1

  1. Sublime Text 2 或 Vim

  2. Go 的依赖关系由你的导入语句决定,这意味着你的代码导入的内容就是它所依赖的内容

  3. Travis CI

  4. 你可以参考golang主页

英文:
  1. Sublime Text 2 or Vim

  2. Go dependencies are determined by your import statements which means whatever your code imports is what it depends on

  3. Travis CI

  4. you can refer to the golang homepage

huangapple
  • 本文由 发表于 2013年3月13日 09:38:36
  • 转载请务必保留本文链接:https://go.coder-hub.com/15375535.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定