I need help really bad. Here is the issue I am facing http://forum.broadleafcommerce.org/viewtopic.php?f=15&t=1710&sid=db6c08f66ec8574fa17c1fdaf3877b63%20. What I do not understand is whether I need to do some additional configuration in tomcat to get the work correctly on standalone tomcat. It works perfectly when I use it in eclipse but I had to add addition configuration in the tomcat7-maven-plugin like this
Code: Select all
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0</version>
<configuration>
<warSourceDirectory>${webappDirectory}</warSourceDirectory>
<path>/</path>
<port>${httpPort}</port>
<httpsPort>${httpsPort}</httpsPort>
<keystoreFile>${webappDirectory}/WEB-INF/blc-example.keystore</keystoreFile>
<keystorePass>broadleaf</keystorePass>
<password>broadleaf</password>
</configuration>
</plugin>
This works well for all the three modules but when I deploy my code onto a tomcat server I cannot get the home page on any of the modules to work. say I use http://localhost:8080 I get a page not found but if I do http://localhost:8080/merchandise I get what want. This is the case for admin and combined modules even if deploy it as ROOT.war onto my standalone tomcat server. Do I need to add some additional configuration on the tomcat server for it work?
Thanks,
Blessed