如何将Spring Boot发送给某人?

时间:2017-12-03 05:52:03

标签: java spring maven spring-boot

你好。我正在学习Java Web并使用Spring Boot和Maven创建了一个应用程序 使用 mvn spring-boot:run ,应用程序正常运行 如何编译或构建它以将其发送给某人?

您好。我正在学习Java Web并使用Spring Boot和Maven创建了一个应用程序 使用 mvn spring-boot:run ,应用程序正常运行 如何编译或构建它以将其发送给某人?

(我不确定为什么Stackoverflow要求更多评论)
的pom.xml

SELECT name,sum(age) OVER w, avg(age) OVER w FROM test1 WINDOW w AS (PARTITION BY name ORDER BY age DESC);

2 个答案:

答案 0 :(得分:4)

pom.xml spring-boot-maven-plugin如果pom.xml不可用时,请先确保ABC(您已经这样做了)。

Spring-boot项目结果是一个简单的jar文件。这个jar文件包含它需要的所有文件,嵌入式tomcat等。 从命令行转到项目目录。例如,您的项目根文件夹名称为/ABC,然后转到mvn package 文件夹并运行命令。

/target

成功运行此命令后,您会找到名为/target的文件夹。在java -jar ABC.jar文件夹中,您可以找到您的jar文件。使用$(document).ready(function() { var cityData = [{ cityName: 'Bengaluru', value: "Bengaluru", data: [{ movieName: 'ABC', theaterName: 'Tulsi Theatre' }, { movieName: 'DEF', theaterName: 'PVR' }, { movieName: 'GHI', theaterName: 'Srinivasa Theatre' } ] }, { cityName: 'Hyderabad', value: "Hyderabad", data: [{ movieName: '123', theaterName: 'Theatre1' }, { movieName: '456', theaterName: 'PVR2' }, { movieName: '789', theaterName: 'Theatre3' } ] }, { cityName: 'Guntur', value: "Guntur", data: [{ movieName: 'ABC1', theaterName: 'Theatre4' }, { movieName: 'DEF2', theaterName: 'PVR3' }, { movieName: 'GHI3', theaterName: 'Theatre5' } ] }, { cityName: 'Ongole', value: "Ongole", data: 'currently not available' } ]; $("#selectCity").on('change', function() { var locations = cityData[$(this).val()]; var locationString = 'locations'; console.log(locations) $.each(locations, function(i, item) { console.log(JSON.stringify(item)); // OUCH!!! locationString += '<option value="' + item.id + '">' + item.name + '</option>'; }); //console.log(locationString) $('#secondselectbox').html(locationString); }); });命令运行jar或与他人共享jar。

答案 1 :(得分:-1)

如果要为应用程序创建安装程序,可以使用 IzPack Maven Plugin