- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我是新手,正在尝试使用 gocenter 远程存储库 (Artifactory 6.8) 来解决依赖关系。尽管设置了 GOPROXY 环境变量,但我的 gocenter-cache 存储库仍然是空的。
这是我的代码。
package main
import (
"fmt"
"github.com/naoina/go-stringutil"
)
func main() {
var str string = "hello_world_go"
fmt.Println(stringutil.ToUpperCamelCase(str)) //prints HelloWorldGo
}
我试图解决的依赖关系在这里:https://search.gocenter.io/github.com~2Fnaoina~2Fgo-stringutil/versions
这是我的 GOPROXY 环境变量:
$ echo $GOPROXY
https://<<my Artifactory URL>>/api/go/gocenter
这是 gocenter 存储库定义的截断版本。我用了jfrog docs用于设置:
{
"key" : "gocenter",
"packageType" : "go",
"url" : "https://gocenter.io/",
"rclass" : "remote"
}
当我运行“go get”时,依赖关系解析...
$ go get -v github.com/naoina/go-stringutil
github.com/naoina/go-stringutil (download)
但是 gocenter-cache 是空的,告诉我它没有被使用。
{
"repo" : "gocenter-cache",
"path" : "/",
"created" : "2019-04-17T16:35:37.586Z",
"lastModified" : "2019-04-17T16:35:37.586Z",
"lastUpdated" : "2019-04-17T16:35:37.586Z",
"children" : [ ],
"uri" : "https://<<REDACTED>>/api/storage/gocenter-cache"
}
也许我的“go get”应该有不同的目标?我只是使用 gocenter 中存在的内容:https://search.gocenter.io/github.com~2Fnaoina~2Fgo-stringutil/versions
如果您能帮助指出我做错了什么,我们将不胜感激。我还没有进入模块或类似的东西,因为我是一个 artifactory 管理员而不是开发人员。我只是在尝试制作此功能的原型(prototype),以便我们可以帮助建议用户如何操作。
--更新:我找到了https://golang.org/cmd/go/#hdr-Module_proxy_protocol然后尝试这个:
$ echo $GOPROXY; go get $GOPROXY/github.com/naoina/go-stringutil
https://<<REDACTED>>/api/go/gocenter
package https:/<<REDACTED>>/api/go/gocenter/github.com/naoina/go-stringutil: https:/<<REDACTED>>/api/go/gocenter/github.com/naoina/go-stringutil: invalid import path: malformed import path "https:/<<REDACTED>>/api/go/gocenter/github.com/naoina/go-stringutil": invalid char ':'
所以我的协议(protocol)和我的 url 之间的冒号是无效字符?另外为什么要删除我的一个正斜杠?
--更新 2:我让“go mod init”开始工作,有点:
$ go mod init
go: creating new go.mod: module example/hello
$ ls
go.mod hello.go
$ go build
build example/hello: cannot load github.com/naoina/go-stringutil: cannot find module providing package github.com/naoina/go-stringutil
$ cat go.mod
module example/hello
go 1.12
$ echo $GOPROXY
https://<<REDACTED>>/api/go/gocenter
--更新 3:
$ cat go.mod
module example/hello
go 1.12
require github.com/naoina/go-stringutil v0.1.0
$ go build
hello.go:6:2: cannot find package "github.com/naoina/go-stringutil" in any of:
C:\Go\src\github.com\naoina\go-stringutil (from $GOROOT)
C:\Users\samuelm\go\src\github.com\naoina\go-stringutil (from $GOPATH)
$ echo $GOPROXY
https://<<REDACTED>>/api/go/gocenter
--更新 4:看来我还没有使用模块?
$ go list -m all
go list -m: not using modules
--更新 5,回复:retgits您的步骤有所帮助,但我还没有完全做到。
$ find .
.
./bin
./src
./src/example.com
./src/example.com/hello
./src/example.com/hello/hello.go
$ cd src/
$ go mod init example.com/hello
go: creating new go.mod: module example.com/hello
$ cat go.mod
module example.com/hello
go 1.12
$ go get -v github.com/naoina/go-stringutil
Fetching https://<<REDACTED>>/api/go/gocenter/github.com/naoina/go-stringutil/@v/list
Fetching https://<<REDACTED>>/api/go/gocenter/github.com/naoina/@v/list
Fetching https://<<REDACTED>>/api/go/gocenter/github.com/@v/list
go get github.com/naoina/go-stringutil: unexpected status (https://<<REDACTED>>/api/go/gocenter/github.com/naoina/go-stringutil/@v/list): 404 Not Found
$ go build example.com/hello
can't load package: package example.com/hello: unknown import path "example.com/hello": cannot find module providing package example.com/hello
$ cd example.com/hello/
$ go build
build example.com/hello/example.com/hello: cannot load github.com/naoina/go-stringutil: cannot find module providing package github.com/naoina/go-stringutil
我没有在我的 GOPROXY 中提供凭据,因为我们的最终用户没有帐户,我们在防火墙环境中并允许完全匿名读取访问。如果我们必须提供用户帐户,那么我们将无法支持 Go。
--最终更新:删除我的本地代理解决了 404 问题,retgits 解决方案有效。
最佳答案
您提到您不是 Go 开发人员,所以让我引导您完成所有步骤。我意识到这对这里的某些开发人员来说可能有点矫枉过正,但它可能会对您有所帮助。
根据您放置源代码的位置,您需要设置环境变量 GO111MODULE
.从 go 1.11 开始,建议不要再将源代码放在 $GOPATH 中。如果你把你的代码放在那里并想使用 Go 模块,你必须设置 GO111MODULE
至 true
(我个人将我所有的 Go 代码都放在 $GOPATH 之外)。在 Windows 上,您必须先创建环境变量并进行相应设置(并重新启动终端)。
要创建 Go 模块,您必须运行命令 go mod init <name of your module>
.就我而言,我运行了命令 go mod init github.com/retgits/bla
这创造了一个go.mod
归档
module github.com/retgits/bla
go 1.12
现在添加模块就像运行 go get
一样简单.如果您想使用 GoCenter 或 Artifactory 来帮助解决您的模块。
为了帮助解析模块,您可能需要查看两个选项:
goc
的实用程序使用goc
goc实用程序自动将 GOPROXY 设置为 GoCenter,绕过 Artifactory 等其他代理。 Go 客户端的当前行为是查看一个代理,如果不是所有模块都从那里解析,则构建失败。 goc
将首先查看 GoCenter,如果模块不在 GoCenter 中,它将从其原始位置(如 GitHub)获取模块
使用 Artifactory
如果您想使用 Artifactory 来解析和缓存您的 Go 模块,您必须使用 GoCenter 的设置创建一个远程存储库(如您所提到的,在文档中)。您必须将该远程存储库包含到虚拟存储库中才能使其正常工作。
将 GoCenter 设置为 GOPROXY
第三种选择是仅使用 GoCenter(由 JFrog 创建的公共(public)注册表),但这可能会打败您最初的问题:
export GOPROXY="https://gocenter.io"
go get -v github.com/naoina/go-stringutil
无论您选择哪个选项,它都会更新 go.mod
到
module github.com/retgits/bla
go 1.12
require github.com/naoina/go-stringutil v0.1.0 // indirect
indirect
是因为我还没有创建 .go
包含使用此导入的代码的文件。
如果我现在创建一个 main.go
样本与
package main
import (
"fmt"
"github.com/naoina/go-stringutil"
)
func main() {
str := stringutil.ToSnakeCase("HelloWorld")
fmt.Println(str)
}
// Running go run main.go would result in
// hello_world
它将删除 indirect
来自 go.mod 文件,因为我现在有依赖于我的模块的代码。
关于go - 如何使用 gocenter remote Artifactory repo 进行本地依赖解析?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55735128/
我需要为我在 artifactory 中的一个 repo 协议(protocol)删除超过特定天数的 Artifactory 版本。我的意思是假设我的 artifactory url repo 是:-
我需要为我在 artifactory 中的一个 repo 协议(protocol)删除超过特定天数的 Artifactory 版本。我的意思是假设我的 artifactory url repo 是:-
我们使用的是 Artifactory 版本 4.12.2。如果我有十个本地存储库,并且我只想在五个存储库中保留最新的二十个 Artifactory ,而在其他五个存储库中则没有限制。需要建议我如何实现
我们想要两个 JFrog Artifactory 实例,一个供公司本地网络内部的用户使用(完全开放访问),另一个可以从外部使用(访问受限)。因此,我们希望第二个实例镜像第一个实例的部分(或全部)存储库
我在 Artifactory (OpenSource) 中有一些 Artifactory : 我可以使用 下载 Artifactory jfrog CLI : jfrog rt config --us
如何将特定 Artifactory 复制到另一个 Artifactory 实例? 据我所知,导出/导入功能仅适用于完整系统或完整的单个存储库复制。我也不想复制完整的 repo 协议(protocol)
我知道 artifactory 使用基于校验和的存储,并且只会存储一个 Artifactory 的一个副本,即使我以不同的名称上传多个相同的副本也是如此。 因为我有很多项目都使用匿名版本但可能是相同的
假设我有 Artifactory “mylibrary-5.2.jar”和“mylibrary-5.3.jar”,分别代表我们的项目为我们的其他项目之一创建和发布的库的 5.2 和 5.3 版本。 A
阅读本 API 指南。我的 Artifactory 版本是 4.12.2。 https://www.jfrog.com/confluence/display/RTF/Artifactory+REST+
我在玩一个全新的OOS artifactory安装。我有一个 jcenter 的远程存储库.我正在寻找一种将远程 Artifactory 手动缓存到 jcenter-cach 的方法与 artifac
我有 Artifactory Jfrog 6.16.0 Pro。我安装了插件 artifactCleanup 并针对存储库运行它。它删除了大约 500GB。下一步,我从垃圾箱中删除文件,现在它为零。最
JFrog Artifactory 支持 NuGet 源。您将如何配置 Chocolatey 以指向 Artifactory 服务器而不是 Chocolatey.org? 最佳答案 创建一个指向 Ch
Maven Publishing的新手。我们的团队已经开始使用Artifactory,我正在尝试找出如何发布到Artifactory,但使用的是自定义 Artifact ID。这是我的build.gr
我正在使用 Jfrog artifactory OSS 版本 5。我可以看到我的快照存储库太大,我想从快照存储库中删除不需要的 Artifactory 。 我想删除过去 6 个月内未下载的所有 Art
我正在使用 Jfrog artifactory OSS 版本 5。我可以看到我的快照存储库太大,我想从快照存储库中删除不需要的 Artifactory 。 我想删除过去 6 个月内未下载的所有 Art
情况是这样的,我们在公司有一个共享文件夹,当我们放置一个应用程序的安装程序时(两个文件 .sh,一个用于 bin,另一个用于 conf),这是一个手动操作。 我们正在尝试让 Jenkins 自动执行此
我目前正尝试在 Artifactory 中查询与核心项目相关的特定 Artifactory 。所有 Artifactory 都将以项目标签为前缀。示例:“proj1-core”。我使用 Artifac
我已经设置了一个 Artifactory (4.1.2) 的实例,我用它来存储 java Artifactory 。我使用如下配置的 gradle 插件将 Artifactory 推送到实例 arti
我想永久链接到Artifactory中工件的最新快照版本。如果我们使用的是1.0-SNAPSHOT,我想要一个可下载最新的1.0-SNAPSHOT JAR的URL。通过在服务器上的http://hos
当我下载,解压缩并启动artifactory.sh时,看到以下错误 2020-02-26T21:32:50.496Z [jfac ] [ERROR] [c1b4de79a3f11666] [.j.a.
我是一名优秀的程序员,十分优秀!