我为here
留下了未解决的问题我正在尝试创建自定义codegen,我设法通过将文件放在codegen项目中来使其工作,但我希望它能像这样工作:https://github.com/swagger-api/swagger-codegen#making-your-own-codegen-modules
我根本没有修改自动生成的项目,但我一直在:
Error: Could not find or load main class io.swagger.codegen.SwaggerCodegen
这是命令行:
java -cp output/myLibrary/target/myCustomCodegen-swagger-codegen-1.0.0.jar:swagger-codegen-cli-2.1.6.jar io.swagger.codegen.SwaggerCodegen generate -i https://watson-api-explorer.mybluemix.net/listings/conversation-v1-experimental.json -l com.my.company.codegen.Mycustomcodegengenerator -o outputlocation
我从这里拿到了罐子https://mvnrepository.com/artifact/io.swagger/swagger-codegen-project/2.1.6 这就是我正在做的事情:
运行java -jar swagger-codegen-cli-2.1.6.jar meta \ -o output/myLibrary -n myClientCodegen -p com.my.company.codegen
以创建服装代码
在output / myLibrary中运行mvn package
在包含swagger-codege-cli-2.1.6.jar和输出文件夹的文件夹中运行java -cp output/myLibrary/target/myCustomCodegen-swagger-codegen-1.0.0.jar:swagger-codegen-cli-2.1.6.jar io.swagger.codegen.SwaggerCodegen generate -i https://watson-api-explorer.mybluemix.net/listings/conversation-v1-experimental.json -l com.my.company.codegen.Mycustomcodegengenerator -o outputlocation
如果我删除第一部分但找不到新语言,它会找到该类:
java -cp swagger-codegen-cli-2.1.6.jar io.swagger.codegen.SwaggerCodegen generate -i https://watson-api-explorer.mybluemix.net/listings/conversation-v1-experimental.json -l com.my.company.codegen.Mycustomcodegengenerator -o outputlocation
我查看了“错误:无法找到或加载主类”问题的答案,但无法解决问题。
答案 0 :(得分:1)
问题是您没有在通话中指定swagger-codegen-2.1.6.jar
的正确路径。这就是为什么它找不到main
- 类。
如果您在根项目swagger-codegen
内,则应指定如下:modules/swagger-codegen-cli/target/swagger-codegen-cli.jar
~$ cd ~/git/swagger-codegen # go into your root project
~/git/swagger-codegen$ # ... do the steps you described
~/git/swagger-codegen$ java -cp \
output/myLibrary/target/myClientCodegen-swagger-codegen-1.0.0.jar:modules/swagger-codegen-cli/target/swagger-codegen-cli.jar \
io.swagger.codegen.SwaggerCodegen \
generate -i https://watson-api-explorer.mybluemix.net/listings/conversation-v1-experimental.json \
-l com.my.company.codegen.Mycustomcodegengenerator \
-o outputlocation
或者作为一个单行:
~/git/swagger-codegen$ java -cp output/myLibrary/target/myClientCodegen-swagger-codegen-1.0.0.jar:modules/swagger-codegen-cli/target/swagger-codegen-cli.jar io.swagger.codegen.SwaggerCodegen generate -i https://watson-api-explorer.mybluemix.net/listings/conversation-v1-experimental.json -l com.my.company.codegen.Mycustomcodegengenerator -o outputlocation
更新1
我非常确定当您使用-cp
构建类路径时,swagger-codegen-cli-2.1.6.jar
会出错。请测试以下内容。
将两个(myClientCodegen-swagger-codegen-1.0.0.jar
和swagger-codegen-cli-2.1.6.jar
)罐子复制到同一个文件夹中。然后进入此文件夹并尝试以下操作:
javap -cp myCustomCodegen-swagger-codegen-1.0.0.jar:swagger-codegen-cli-2.1.6.jar io.swagger.codegen.SwaggerCodegen
java p 检查主类io.swagger.codegen.SwaggerCodegen
是否可用。在我的机器上打印出来:
Compiled from "SwaggerCodegen.java"
public class io.swagger.codegen.SwaggerCodegen {
public io.swagger.codegen.SwaggerCodegen();
public static void main(java.lang.String[]);
}
答案 1 :(得分:1)
将冒号更改为分号 - 在类路径中的jar之间。而不是
java -cp output/myLibrary/target/myCustomCodegen-swagger-codegen-1.0.0.jar:swagger-codegen-cli-2.1.6.jar io.swagger.codegen.SwaggerCodegen generate -i https://watson-api-explorer.mybluemix.net/listings/conversation-v1-experimental.json -l com.my.company.codegen.Mycustomcodegengenerator -o outputlocation
应该是
java -cp output/myLibrary/target/myCustomCodegen-swagger-codegen-1.0.0.jar;swagger-codegen-cli-2.1.6.jar io.swagger.codegen.SwaggerCodegen generate -i https://watson-api-explorer.mybluemix.net/listings/conversation-v1-experimental.json -l com.my.company.codegen.Mycustomcodegengenerator -o outputlocation
多个类路径需要用分号分隔。 http://docs.oracle.com/javase/7/docs/technotes/tools/windows/classpath.html
答案 2 :(得分:0)
我在 macOS 10.14 的 Eclipse 4.19 中作为 Spring Boot 应用程序运行时遇到了类似的问题:
<块引用>"错误:无法找到或加载主类 io.swagger.Swagger2SpringBoot"
...即使我正盯着这个包含 main 方法的类。我的解决方案是发布一个“Maven 更新项目”。这与在其他具有奇怪 Java 症状的情况下一样,解决了该问题。