我无法使用Spring Boot API处理Azure应用服务。我在https://docs.microsoft.com/en-us/java/azure/spring-framework/deploy-spring-boot-java-web-app-on-azure上遵循了Microsoft指南,但到目前为止没有运气。
应用程序确实启动(我可以看到应用程序在日志文件中启动)但是对应用程序服务URL的http请求总是在超时时间结束。
我已经读过Azure应用服务只能选择在端口80或8080上运行的嵌入式tomcat服务器,但也没有运气。
该应用程序部署在www根目录中,并且还部署了适当的web.config。
我尝试使用和不使用应用程序服务器运行App Service(Tomcat和Jetty,因为服务器嵌入在应用程序中而不需要),但两种方法都失败了。
我错过了其他一些配置部分吗?或者这可能与我在天蓝色上使用的计划类型有关?也许这个资源存在一些问题?
任何指针?
THX,
伯特
答案 0 :(得分:4)
请使用spring和azure社区提供的以下步骤在azure上部署spring boot应用程序:
1)进入你的app文件夹里面你有pom文件并运行
确保以下插件应该在pom文件中
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework</groupId>
<artifactId>gs-spring-boot</artifactId>
<version>0.1.0</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- tag::actuator[] -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- end::actuator[] -->
<!-- tag::tests[] -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- end::tests[] -->
</dependencies>
<properties>
<java.version>1.8</java.version>
<maven.build.timestamp.format>yyyyMMddHHmmssSSS</maven.build.timestamp.format>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-webapp-maven-plugin</artifactId>
<version>0.1.5</version>
<configuration>
<authentication>
<serverId>azure-auth</serverId>
</authentication>
<resourceGroup>maven-plugin</resourceGroup>
<appName>maven-web-app-${maven.build.timestamp}</appName>
<region>westus</region>
<javaVersion>1.8</javaVersion>
<deploymentType>ftp</deploymentType>
<stopAppDuringDeployment>true</stopAppDuringDeployment>
<resources>
<resource>
<directory>${project.basedir}/target</directory>
<targetPath>/</targetPath>
<includes>
<include>*.jar</include>
</includes>
</resource>
<resource>
<directory>${project.basedir}</directory>
<targetPath>/</targetPath>
<includes>
<include>web.config</include>
</includes>
</resource>
</resources>
</configuration>
</plugin>
</plugins>
</build>
</project>
注意:确保您创建了与Azure相同名称的web应用程序 行家-web应用 - $ {maven.build.timestamp}
现在在root上创建名为“web.config”的文件,并在web.comfig中添加jar
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified"/>
</handlers>
<httpPlatform processPath="%JAVA_HOME%\bin\java.exe"
arguments="-Djava.net.preferIPv4Stack=true -Dserver.port=%HTTP_PLATFORM_PORT% -jar "%HOME%\site\wwwroot\azure-rest-example-app-0.1.0.jar"">
</httpPlatform>
</system.webServer>
</configuration>
确保应用在本地工作正常。
如果您有多个与您的ID相关联的帐户
,请使用以下命令az login
帐户列表
az帐户集 - 订阅XXX-XXX-XXX-XXXXXXXXXXXX
现在您需要在Microsoft Azure中创建“服务主体”
1)打开终端窗口。
2)输入az login
,使用Azure CLI登录Azure帐户3)通过键入az ad sp create-for-rbac --name“vaquarkhan”--password“yourpassword”(vaquarkhan是用户名,yourpassword是服务主体的密码)来创建Azure服务主体。 / p>
az ad sp create-for-rbac --name“app-name”--password“password”
注意:如果您收到错误需要更改设置---&gt; here
“azure.graphrbac.models.graph_error.GraphErrorException:来宾用户 不允许执行此操作。“
如果成功
Azure应该打印出类似这样的JSON响应:
{
"appId": "XXX-XXXX-XXX-XXX-XXXX",
"displayName": "vaquarkhan",
"name": "http://vaquarkhan",
"password": "yourpassword",
"tenant": "YYY-YYYY-YYY-YYY-YYYY"
}
配置Maven以使用Azure服务主体
1)在文本编辑器中打开Maven settings.xml文件(通常位于/etc/maven/settings.xml或$ HOME / .m2 / settings.xml中)。
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository/>
<interactiveMode/>
<usePluginRegistry/>
<offline/>
<pluginGroups/>
<servers>
<server>
<id>azure-auth</id>
<configuration>
<client>ur key</client>
<tenant>ur tenant</tenant>
<key>YOUR PASSWORD</key>
<environment>AZURE</environment>
</configuration>
</server>
</servers>
<proxies/>
<profiles>
<profile>
<id>hwx</id>
<repositories>
<repository>
<id>hwx</id>
<name>hwx</name>
<url>http://nexus-private.hortonworks.com/nexus/content/groups/public/</url>
</repository>
</repositories>
</profile>
</profiles>
<mirrors>
<mirror>
<id>public</id>
<mirrorOf>*</mirrorOf>
<url>http://nexus-private.hortonworks.com/nexus/content/groups/public/</url>
</mirror>
</mirrors>
<activeProfiles/>
</settings>
2)将本教程上一节中的Azure服务主体设置添加到settings.xml文件中的集合,如下所示:
<servers>
<server>
<id>azure-auth</id>
<configuration>
<client>aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa</client>
<tenant>tttttttt-tttt-tttt-tttt-tttttttttttt</tenant>
<key>pppppppp</key>
<environment>AZURE</environment>
</configuration>
</server>
</servers>
3)保存并关闭settings.xml文件。
构建应用并将其部署到Azure
1)运行以下命令
部署Web应用程序后,请访问Azure门户进行管理 它。它将列在App Services中。
点击该应用程序。从那里,面向公众的URL 您的网络应用程序将列在概述部分
确定您的网络应用的网址您可以点击此链接 访问Spring Boot应用程序并与之交互。
Azure maven插件文档
注意:网站名称必须是全球唯一的并且已生成 使用应用名称,确保名称应该是唯一的。
答案 1 :(得分:2)
结合official tutorials中的步骤和您的实际情况,我提供了以下检查点:
第1点: 请使用mvn package
在pom.xml
文件所在的目录中建立JAR包。
第2点: 请确保web.config中配置的jar包名称与上传的jar包名称相同。
web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="%JAVA_HOME%\bin\java.exe"
arguments="-Djava.net.preferIPv4Stack=true -Dserver.port=%HTTP_PLATFORM_PORT% -jar "%HOME%\site\wwwroot\<your project name>"">
</httpPlatform>
</system.webServer>
</configuration>
第3点:请使用FTP在KUDU上发布jar files
和web.config
到D:\home\site\wwwroot\
目录。
第4点: 请确保ApplicationSettings
与您的项目匹配,例如jdk version
,tomcat version
。
如果要部署war
文件,则需要在Azure门户上配置应用服务的ApplicationSettings,然后将war文件上传到路径D:\home\site\wwwroot\webapps
。
此外,您可以检查KUDU上的日志文件:https://<your project name>.scm.azurewebsites.net/DebugConsole.
作为参考,请参阅下面的文件和主题。
1。Configure web apps in Azure App Service
2。Create a Java web app in Azure App Service
3。Deploying Springboot to Azure App Service
希望它对你有所帮助。
答案 2 :(得分:1)
为了让Springboot应用程序运行,您需要上传JAR文件并添加web.config文件。
要向服务传达您要运行的内容,您需要将web.config文件添加到应用服务的site \ wwwroot文件夹中。由于您已经创建了web.config文件,因此使用Maven添加以下内容并在包中动态包含项目/发布。
<build>
<resources>
<resource>
<directory>${project.basedir}/wwwroot</directory>
<filtering>true</filtering>
<targetPath>${basedir}/target</targetPath>
</resource>
</resources>
</build>
现在将jar文件和web.config放在Azure App Service中。
您可以检查一下是否已创建web.config文件,如下所示
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="%JAVA_HOME%\bin\java.exe"
arguments="-Djava.net.preferIPv4Stack=true -Dserver.port=%HTTP_PLATFORM_PORT% -jar "%HOME%\site\wwwroot\@project.artifactId@-@project.version@.jar"">
</httpPlatform>
</system.webServer>
</configuration>
答案 3 :(得分:1)
事实证明,我对这个天蓝色资源问题的预感是正确的。升级资源内存和CPU解决了这个问题。