问题运行spring boot profiles jar

时间:2017-10-06 21:44:03

标签: java spring spring-boot

我在控制台中运行spring boot jar

$session = New-PSSession -ComputerName MyHost -Credential $credentials
Invoke-Command -ScriptBlock { 
    $webClient = New-Object System.Net.WebClient
    $webClient.DownloadFile("http://somesite.com/some_path/config.zip", "C:\Temp\config.zip")
    $shellApp = New-Object -Com Shell.Application
    $zipFile = $shellApp.namespace("C:\Temp\config.zip")
    $destination = $shellApp.namespace("C:\Temp")
    $destination.CopyHere($zipFile.items(), 1564)
} -Session $session
Remove-PSSession -Session $session

我不明白为什么会收到此错误:

  

无法访问jarfile .profiles.active =

1 个答案:

答案 0 :(得分:1)

<强> EDITED

问题中显示的行应该有效。我在自己的演示项目中尝试过它:java -jar -Dspring.profiles.active=dev build/libs/demo-0.0.1-SNAPSHOT.jar

所以我认为@Indra Basak评论指向了正确的方向。看起来你的jar文件的路径不正确。