gpt4 book ai didi

Azure 部署失败 : The host name myapp. azurewebsites.net 无效

转载 作者:行者123 更新时间:2023-12-02 07:35:14 26 4
gpt4 key购买 nike

我正在尝试将 springboot 应用程序部署到 Azure 应用程序服务。并收到错误:com.microsoft.azure.CloudException:主机名 my_app.azurewebsites.net 无效。。。。引起原因:rx.exceptions.OnErrorThrowable$OnNextValue:发出 onNext 值时发生 OnError:retrofit2.Response.class

我模仿了此处所示的步骤:https://learn.microsoft.com/en-us/java/azure/spring-framework/deploy-spring-boot-java-app-with-maven-plugin?view=azure-java-stable

我已安装 Azure CLI 并使用公钥进行连接。我在下面附加了我的 pom.xml 的一部分,即我添加的插件

 <plugin>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-webapp-maven-plugin</artifactId>
<version>1.4.0</version>
<configuration>
<deploymentType>jar</deploymentType>
<!-- configure app to run on port 80, required by App Service -->
<appSettings>
<property>
<name>JAVA_OPTS</name>
<value>-Dserver.port=80</value>
</property>
</appSettings>

<!-- Web App information -->
<resourceGroup>my_group</resourceGroup>
<appName>my_app</appName>
<region>East US</region>

<!-- Java Runtime Stack for Web App on Linux-->
<linuxRuntime>jre8</linuxRuntime>
</configuration>
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.11</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.2.11</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.2.11</version>
</dependency>
<dependency>
<groupId>javax.activation</groupId>
<artifactId>activation</artifactId>
<version>1.1.1</version>
</dependency>
</dependencies>
</plugin>

最佳答案

appName 值必须是唯一的,并且不能包含任何无效字符,例如下划线。

关于Azure 部署失败 : The host name myapp. azurewebsites.net 无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55678524/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com