Change comment:
Guidelines for where to put code
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -XWiki.en ygma1 +XWiki.VincentMassol - Content
-
... ... @@ -1,5 +1,13 @@ 1 1 {{toc/}} 2 += Where to put code? = 2 2 4 +Since xwiki allows to put code both in wiki pages and in Java you might wonder where you should put your code. Here's some general guidelines: 5 +* Don't put "business logic" code in wiki pages. Use Java for that. This gives you nice IDEs, the ability to easily debug the code and the ability to write automated unit tests. Generally speaking it makes it easy on maintenance. 6 +* In general put the minimum amount of scripts in your wiki pages since that makes it harder to maintain. 7 +* The only scripts that you may put in wiki pages are "presentation logic" code. 8 + 9 +Said differently you should use the [[MVC>>http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller]] approach by separating your Model (what we called "business logic" above) from your View (what we called "presentation logic" above). 10 + 3 3 = XWiki Application Organization = 4 4 5 5 This [[Best Practices document>>Best Practices XWiki Application Organization]] explains how to best organize an XWiki Application.