Azure部署失败:主机名myapp.azurewebsites.net无效

时间:2019-04-14 18:18:48

标签: azure spring-boot cloud

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

我模仿了此处显示的步骤:https://docs.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>

2 个答案:

答案 0 :(得分:2)

appName值必须唯一,并且不能包含下划线之类的无效字符。

答案 1 :(得分:1)

登录到Azure门户并启动向导以创建一个新的Web应用程序以找到可接受的应用程序名称,然后更新您的部署配置,然后重试。

portal