我在命令行中执行特定命令时遇到问题。我面临的问题是:当文件已经在目录中时,系统找不到指定的文件。以下是我的命令:
C:\Users\User\Downloads\swagger-codegen-master\swagger-codegen master\modules\swagger-codegen\src> copy -R \main\resources\htmlDocs2 ~\test\resources\2_0\templates
请帮帮我!谢谢!
答案 0 :(得分:0)
要从Swagger Codegen生成html2
文档,Petstore Windows批处理文件是一个很好的起点:
set executable=.\modules\swagger-codegen-cli\target\swagger-codegen-cli.jar
If Not Exist %executable% (
mvn clean package
)
REM set JAVA_OPTS=%JAVA_OPTS% -Xmx1024M -DloggerPath=conf/log4j.properties
set ags=generate -i modules\swagger-codegen\src\test\resources\2_0\petstore.yaml -l html2 -o samples\html2
java %JAVA_OPTS% -jar %executable% %ags%
参考:https://github.com/swagger-api/swagger-codegen/blob/master/bin/windows/html2-petstore.bat