java - Where the tomcat location when running application with broadleaf -
i trying run simple demo application of broadleaf. running app, want access using pc except this. have change settings in tomcat not able find tomcat located , server.xml file located can kind of changes in server in order make running on pc using public ip.
the latest version of broadleaf (broadleaf-4.0.0-ga) uses tomcat7-maven-plugin
demo site, run embedded tomcat instance. if need custom server.xml
please refer question.
you can find tomcat-maven config in pom.xml of site project.
<plugin> <groupid>org.apache.tomcat.maven</groupid> <artifactid>tomcat7-maven-plugin</artifactid> <configuration> <path>/</path> <port>${httpport}</port> <httpsport>${httpsport}</httpsport> </configuration> </plugin>
update required changes link above.
Comments
Post a Comment