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

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -