Jetty spring profile以编程方式

时间:2014-06-11 12:52:14

标签: spring jetty profiles

我正在寻找一种以编程方式在jetty中设置spring配置文件的方法,以便服务器上war文件使用给定配置文件的应用程序,这是我的代码:

final WebAppContext context = new WebAppContext();
context.setLogUrlOnStart(true);
context.setWar("target/deployables/myapp-rest/myapp-rest.war");
context.setContextPath("/" + TEST_APP_CONTEXT);
context.setParentLoaderPriority(true);
server.setHandler(context);
server.start();

我尝试了几件事,但似乎都没有...我需要传递-Dspring.profiles.active = myProfile

0 个答案:

没有答案