尝试在 Maven 集成测试中运行外部战争
我正在尝试测试一个依赖 Solr 执行搜索查询的 Web 应用程序。我已经有了启动 Web 应用程序的 Maven Tomcat 插件。在 Maven 构建期间,如何导入模块外部的 war (Solr) 并在 Tomcat 中运行它?
笔记: 我创建了一个 Solr war 包并将其放入本地 Maven 存储库中。然后我将依赖项添加到 Web 应用程序项目中。正如我所发现的,在不添加任何其他配置的情况下,它会将 Solr war 覆盖在我的 Web 应用程序之上。不理想。
I am trying to test a web application that relies on Solr for executing search queries. I already have the Maven Tomcat plugin which starts up the web application. During the Maven build, how can I import a war (Solr) that is external to the module and run that in Tomcat as well?
Notes:
I created a Solr war package and put it in a local Maven repository. I then added the dependency to the web application project. As I've found out, without adding any other configuration, it's overlaying the Solr war on top of my web application. Not ideal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将文件 appache-solr*.war 从 solr\dist 复制到 tomcat\webapps,然后转到 appache-tomcat\bin 并
编辑文件catalina.bat并应用以下补丁(您也可以手动执行,只需添加一行)
@@ -84,7 +84,8 @@
雷姆 $Id:catalina.bat 1040546 2010-11-30 14:47:34Z 市场 $
雷姆 ------------------------------------------------- --------------------------
-
+rem 添加 solr 主路径
+设置JAVA_OPTS =%JAVA_OPTS%-Dsolr.solr.home = c:/ solr
rem 抑制 CTRL+C 终止批处理作业
如果不是“%1”==“运行”,则转到 mainEntry
Copy the file appache-solr*.war from solr\dist to tomcat\webapps then go to appache-tomcat\bin and
Edit the file catalina.bat and apply the following patch (you can also do it manually, just adding a line)
@@ -84,7 +84,8 @@
rem $Id: catalina.bat 1040546 2010-11-30 14:47:34Z markt $
rem ---------------------------------------------------------------------------
-
+rem Adding solr home path
+set JAVA_OPTS=%JAVA_OPTS% -Dsolr.solr.home=c:/solr
rem Suppress Terminate batch job on CTRL+C
if not ""%1"" == ""run"" goto mainEntry