This page (revision-30) was last changed on 03-Jan-2023 11:19 by Juan Pablo 

This page was created on 11-Oct-2014 09:41 by unknown

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Version Date Modified Size Author Changes ... Change note
30 03-Jan-2023 11:19 2 KB Juan Pablo to previous Remove typo + add some formatting
29 30-Mar-2020 20:53 2 KB Juan Pablo to previous | to last deleted screenshots section, it was out of date
28 30-Mar-2020 20:52 2 KB Juan Pablo to previous | to last
27 30-Mar-2020 17:32 2 KB Juan Pablo to previous | to last rework remote debugging section
26 08-Feb-2020 10:19 2 KB Dirk Frederickx to previous | to last Response.write(92307949298019) ==> DevelopmentEnvironment
25 08-Feb-2020 03:19 2 KB pHqghUme to previous | to last DevelopmentEnvironment ==> Response.write(92307949298019)
24 08-Feb-2020 02:50 2 KB pHqghUme to previous | to last Configuration ==> 1
23 27-Jul-2017 14:45 2 KB Dirk Frederickx to previous | to last Category.D ==> Category.Documentation
22 16-Jul-2017 13:32 2 KB mingbai to previous | to last Category.Documentation ==> Category.D
21 16-Sep-2016 10:56 2 KB David Vittor to previous | to last

Difference between version and

At line 28 removed 4 lines
Go to the source directory e.g. C:/code/jspwiki and run:
{{{
mvn eclipse:eclipse
}}}
At line 29 added 2 lines
JSPWiki source is organized as a standard maven project so it can be easily imported out of the box by your favourite IDE.
At line 46 changed one line
mvn tomcat7:run-war
mvn org.codehaus.cargo:cargo-maven2-plugin:run
At line 52 removed one line
To enable remote debugging if running using mvn tomcat7
At line 54 changed 4 lines
Run the following before running maven.
{{{
# Windows
set MAVEN_OPTS=-agentlib:jdwp=transport=dt_socket,address=8000,server=y,suspend=n
The cargo plugin is configured to attach a remote debugger on port 5005.
At line 59 changed 5 lines
# Linux
export MAVEN_OPTS=-agentlib:jdwp=transport=dt_socket,address=8000,server=y,suspend=n
}}}
If using an external tomcat, open the <tomcat>/bin/startup.bat (or .sh) and add __jpda__ before start on the following line:
If using an external tomcat, open the {{<tomcat>/bin/startup.bat}} (or {{.sh}}) and add __jpda__ before start on the following line:
At line 68 removed 4 lines
!! Screenshots
[JSPWiki_Default.png]
At line 73 changed one line
The default configuration file is found at <jspwiki.dir>/jspwiki-war/src/main/resources/ini/__jspwiki.properties__
The default configuration file is found at {{<jspwiki.dir>/jspwiki-war/src/main/resources/ini/__jspwiki.properties__}}
At line 75 changed one line
For more information see [Documentation] and [1]
For more information see [Documentation].
At line 80 changed one line
<jspwiki.dir>/jspwiki-war/src/main/resources/__jspwiki-custom.properties__
{{<jspwiki.dir>/jspwiki-war/src/main/resources/__jspwiki-custom.properties__}}
At line 84 changed one line
* # jspwiki.fileSystemProvider.__pageDir__ = C:/Data/jspwiki
* {{jspwiki.fileSystemProvider.__pageDir__ = C:/Data/jspwiki }}
At line 86 changed one line
By default this line is commented out so it will go to the Java __<user.home>/jspwiki-files__ directory.
By default this line is commented out so it will go to the Java __{{<user.home>/jspwiki-files}}__ directory.
At line 88 changed 3 lines
* C:/Users/<username>/jspwiki-files
* C:/Documents and Settings/<username>/jspwiki-files
* /home/<username>/jspwiki-files
* {{C:/Users/<username>/jspwiki-files}}
* {{C:/Documents and Settings/<username>/jspwiki-files}}
* {{/home/<username>/jspwiki-files}}
At line 82 added 2 lines
[{PageViewPlugin}]