Last modified by Agnease on 2026/05/26 11:00

Hide last authors
Agnease 1.1 1 {{velocity}}
2 #set ($discard = $xwiki.ssx.use('PublicWebSite.WebHome'))
3 {{html clean="false"}}
4
5 <section class="resource-header" aria-labelledby="hero-title">
6 <div class="container">
7 <div class="text-center">
Agnease 3.1 8 <div class="hero-kicker">
Agnease 1.1 9 <i class="fa fa-code" aria-hidden="true"></i>
10 XWiki custom development guidance
11 </div>
12 </div>
13
Agnease 4.1 14 <h1 id="hero-title">Why XWiki custom development needs structure, documentation and upgrade awareness</h1>
Agnease 1.1 15
16 <p class="resource-summary">
Agnease 2.1 17 XWiki can be adapted to complex business needs. The important part is to keep custom work documented,
18 versioned and easy to validate during future upgrades.
Agnease 1.1 19 </p>
20 </div>
21 </section>
22
23 <section class="resource-page">
24 <div class="container">
25 <div class="resource-layout">
Agnease 3.2 26 <aside class="resource-sidebar" aria-label="Page summary">
27 <h4>In this guide</h4>
28 <ul>
29 <li><a href="#why-customize">Why customize XWiki</a></li>
30 <li><a href="#where-risk-appears">Where risk appears</a></li>
31 <li><a href="#safe-model">Safe model</a></li>
32 <li><a href="#upgrade-validation">Upgrade validation</a></li>
33 <li><a href="#practical-checklist">Checklist</a></li>
34 <li><a href="#strategic-advantage">Strategic advantage</a></li>
Agnease 12.1 35 <li><a href="#custom-development-faq">FAQ</a></li>
Agnease 3.2 36 </ul>
37 </aside>
Agnease 1.1 38
39 <article class="resource-content">
40
41 <p>
Agnease 2.1 42 Many organizations choose XWiki because it can grow beyond a simple documentation space. A platform may start
43 with pages, attachments and permissions, then evolve into structured applications, approval workflows, custom
44 dashboards, branded PDF exports, integrations or internal tools built around the company’s real processes.
Agnease 1.1 45 </p>
46
47 <p>
Agnease 2.1 48 This flexibility is valuable, but it also raises a legitimate concern: will custom development make upgrades
49 harder? The answer depends less on the existence of custom code and more on the way it is organized. A controlled
50 customization can remain stable for years. An undocumented change applied directly in production can become a
51 maintenance problem after the next upgrade.
Agnease 1.1 52 </p>
53
54 <div class="resource-note">
55 <p>
Agnease 12.1 56 <strong>In practice:</strong> XWiki custom development should be separated from standard platform pages,
57 documented, kept under source control, tested on staging and reviewed during upgrades. This makes custom
58 features easier to maintain instead of turning them into hidden dependencies.
59 </p>
60 </div>
61
62 <p>
63 XWiki custom development is the process of adapting the platform with custom pages, classes, objects, sheets,
64 templates, scripts, macros, UI extensions, Java components or integrations. The goal is to support real
65 business processes while keeping the instance understandable, maintainable and upgrade-aware.
66 </p>
67
68 <div class="resource-note">
69 <p>
Agnease 2.1 70 <strong>The main point:</strong> custom code is not the problem. Uncontrolled custom code is. XWiki can be
71 customized safely when changes are separated from standard pages, tracked, documented and tested.
Agnease 1.1 72 </p>
73 </div>
74
Agnease 2.1 75 <h2 id="why-customize">Why XWiki custom development exists</h2>
Agnease 1.1 76
77 <p>
Agnease 2.1 78 Avoiding all customization may look safer at first, but it can create other costs. Users may start maintaining
79 side spreadsheets, sending approvals by email, duplicating data in external tools or bypassing the wiki because
80 it does not match their daily work. In these cases, a well-designed XWiki customization can simplify the process
81 and improve adoption.
Agnease 1.1 82 </p>
83
84 <p>
Agnease 2.1 85 Typical examples include custom metadata for documents, templates for recurring content, dashboards for teams,
86 approval flows, notifications, PDF layouts, page actions, UI extensions, macros and integrations with systems
87 such as authentication providers, ticketing tools, storage services, CRM platforms or AI assistants. These
88 features can be implemented at different levels, from wiki pages and scripts to packaged Java extensions.
Agnease 1.1 89 </p>
90
Agnease 2.1 91 <h2 id="where-risk-appears">Where customization becomes risky</h2>
Agnease 1.1 92
93 <p>
Agnease 2.1 94 Problems usually appear when nobody can quickly explain where a customization is implemented, why it exists or
95 how it should be tested. Business logic mixed into regular content pages, standard pages changed without notes,
96 scripts that exist only in production, hardcoded group names or missing upgrade checks are common signs that the
97 customization process needs more structure.
Agnease 1.1 98 </p>
99
100 <p>
Agnease 2.1 101 This is especially important in XWiki because custom logic can live in several places: classes, objects, sheets,
102 templates, Velocity or Groovy scripts, panels, UI extensions, macros, scheduled jobs and Java components. The
103 flexibility is useful, but each important customization should have a clear location and a clear maintenance
104 path.
Agnease 1.1 105 </p>
106
Agnease 12.1 107 <p>
108 Customizations should also be reviewed as part of the wider platform risk model. See
109 <a href="$xwiki.getURL('resources.xwiki-security-review')">what an XWiki security review should actually include</a>
110 for related checks around permissions, authentication, extensions, infrastructure and operational practices.
111 </p>
Agnease 12.5 112
Agnease 12.4 113 <div class="resource-inline-cta">
114 <p>
115 <strong>Unsure how maintainable your XWiki customizations are?</strong>
116 A customization review can help identify hidden scripts, undocumented logic,
117 upgrade risks and features that should be documented, cleaned up or packaged properly.
118 </p>
119 <a class="btn btn-secondary" href="$xwiki.getURL('contact.WebHome')">Request a customization review</a>
120 </div>
Agnease 12.1 121
Agnease 2.1 122 <h2 id="safe-model">A safer model for XWiki custom work</h2>
123
124 <h3>1. Keep custom code separate from standard XWiki pages</h3>
Agnease 1.1 125 <p>
Agnease 2.1 126 Custom classes, scripts, templates and configuration should usually live in dedicated technical spaces, for
127 example a company-specific <code>Code</code>, <code>Applications</code>, <code>Templates</code> or
128 <code>Config</code> area. This makes it easier to see what belongs to the standard distribution and what belongs
129 to the organization.
Agnease 1.1 130 </p>
131
Agnease 2.1 132 <h3>2. Document the purpose, not only the implementation</h3>
Agnease 1.1 133 <p>
Agnease 2.1 134 A short technical note is often enough: what the customization does, who uses it, where it is implemented, what
135 assumptions it makes and what should be checked after an upgrade. This turns custom work from a hidden script
136 into a maintainable part of the platform.
Agnease 1.1 137 </p>
138
Agnease 12.1 139 <h3>3. Keep custom code under source control</h3>
Agnease 1.1 140 <p>
Agnease 12.1 141 Custom development should not exist only inside the production wiki. Java code, scripts, XAR packages,
142 deployment files and templates should be stored in a source control system, such as Git. This gives the team a
143 history of what changed, when it changed and why.
Agnease 1.1 144 </p>
145
Agnease 2.1 146 <h3>4. Choose the right implementation level</h3>
Agnease 1.1 147 <p>
Agnease 2.1 148 Many useful features can start as wiki-based customizations using XWiki classes, sheets, templates, Velocity or
149 UI extensions. When a feature becomes complex, reusable or business-critical, packaging it as an extension is
150 often a better long-term option. Event listeners, custom services, scheduled jobs, integrations and advanced
151 workflow logic usually benefit from this approach.
Agnease 1.1 152 </p>
153
Agnease 2.1 154 <h3>5. Keep configuration outside the code</h3>
Agnease 1.1 155 <p>
156 Group names, target spaces, template references, email recipients, external URLs and workflow settings should
Agnease 2.1 157 not be hardcoded when they are likely to change. Configuration pages or preference objects make the feature
158 easier to adapt without rewriting the implementation.
Agnease 1.1 159 </p>
160
Agnease 2.1 161 <h2 id="upgrade-validation">Validate custom features during upgrades</h2>
162
Agnease 1.1 163 <p>
Agnease 2.1 164 A successful upgrade is not only one where XWiki starts and standard pages load. The upgrade plan should also
165 include the features that make the instance specific to the organization: custom dashboards, templates, macros,
166 workflows, permissions, notifications, PDF exports, scheduled jobs and integrations.
Agnease 1.1 167 </p>
168
169 <p>
Agnease 2.1 170 For each important customization, the team should know what to test and what a successful result looks like. A
171 staging environment or temporary clone is usually the safest place to run this validation before production is
172 touched.
Agnease 1.1 173 </p>
174
Agnease 12.1 175 <p>
176 For a broader upgrade preparation model, see
177 <a href="$xwiki.getURL('resources.why-upgrade-xwiki')">why regular XWiki upgrades matter</a>.
178 </p>
179
Agnease 2.1 180 <div class="resource-note">
181 <p>
182 <strong>A practical rule:</strong> production can receive urgent fixes when necessary, but it should not become
183 the only place where the real version of a customization exists. After the emergency, the change should be
184 reviewed, documented and added to the normal maintenance process.
185 </p>
186 </div>
Agnease 1.1 187
Agnease 12.2 188 <div class="resource-inline-cta">
189 <p>
190 <strong>Not sure how risky your current XWiki version is?</strong>
191 A short technical review can clarify the upgrade path, extension compatibility,
192 custom code risks and validation needs before production is touched.
193 </p>
194 <a class="btn btn-secondary" href="$xwiki.getURL('contact.WebHome')">Request a quick review</a>
195 </div>
196
Agnease 12.1 197 <h2 id="practical-checklist">XWiki custom development checklist</h2>
Agnease 1.1 198
Agnease 12.1 199 <p>
200 A maintainable XWiki customization should be easy to locate, explain, test and update. The following checklist
201 can be used as a starting point when reviewing existing custom work or planning a new feature.
202 </p>
203
Agnease 2.1 204 <ul class="resource-checklist">
205 <li>Separate custom pages, scripts and configuration from standard XWiki content.</li>
206 <li>Document the business purpose, technical location and validation steps.</li>
Agnease 12.1 207 <li>Keep custom code and important assets under source control, for example in Git.</li>
Agnease 2.1 208 <li>Test custom features on staging before production upgrades.</li>
209 <li>Review old customizations and remove what is no longer used.</li>
Agnease 1.1 210 </ul>
211
212 <h2 id="strategic-advantage">Custom code can become a strategic advantage</h2>
213
214 <p>
Agnease 2.1 215 Many useful platform features start as custom development for one concrete need. A workflow, dashboard,
216 integration or structured application may first solve a private business problem, then become a reusable
217 internal component or even a public extension. This is how practical solutions often mature.
Agnease 1.1 218 </p>
219
220 <p>
Agnease 2.1 221 The goal is not to customize everything. The goal is to customize the right parts, in a way that can be
222 understood and maintained later. When custom work is separated, documented, versioned and tested, XWiki can stay
223 flexible without becoming fragile.
Agnease 1.1 224 </p>
225
Agnease 12.1 226 <h2 id="custom-development-faq">XWiki custom development FAQ</h2>
227
Agnease 12.3 228 <details class="resource-faq-item" open>
229 <summary>Does custom development make XWiki harder to upgrade?</summary>
230 <p>
231 Not automatically. Custom development becomes harder to upgrade when it is undocumented, mixed with regular
232 content, applied directly in production or missing from the upgrade validation plan. Well-organized custom work
233 can remain maintainable across upgrades.
234 </p>
235 </details>
Agnease 12.1 236
Agnease 12.3 237 <details class="resource-faq-item">
238 <summary>Where should XWiki custom code be stored?</summary>
239 <p>
240 Custom wiki pages, scripts, templates and configuration should usually be kept in dedicated technical spaces.
241 Code and important assets should also be tracked in a source control system, such as Git, so changes are not
242 stored only in the production wiki.
243 </p>
244 </details>
Agnease 12.1 245
Agnease 12.3 246 <details class="resource-faq-item">
247 <summary>When should an XWiki customization become an extension?</summary>
248 <p>
249 Packaging a customization as an extension is useful when the feature becomes complex, reusable, business-critical
250 or shared across multiple instances. Java components, event listeners, scheduled jobs and integrations often
251 benefit from an extension-based approach.
252 </p>
253 </details>
Agnease 12.1 254
Agnease 12.3 255 <details class="resource-faq-item">
256 <summary>What should be tested after an XWiki upgrade?</summary>
257 <p>
258 Besides standard pages, the validation should include custom dashboards, templates, macros, workflows,
259 permissions, notifications, PDF exports, scheduled jobs, integrations and any custom applications used by the
260 organization.
261 </p>
262 </details>
Agnease 12.1 263
Agnease 12.3 264 <details class="resource-faq-item">
265 <summary>Why should configuration be kept outside custom code?</summary>
266 <p>
267 Values such as group names, target spaces, external URLs, email recipients and workflow settings can change over
268 time. Keeping them in configuration pages or preference objects makes custom features easier to adapt without
269 changing the implementation.
270 </p>
271 </details>
Agnease 12.1 272
Agnease 11.2 273 <div class="resource-note">
274 <p>
275 Related resources:
Agnease 11.4 276 <a href="$xwiki.getURL('resources.xwiki-security-review')">what an XWiki security review should actually include</a>
Agnease 11.2 277 and
Agnease 11.3 278 <a href="$xwiki.getURL('resources.why-upgrade-xwiki')">why regular XWiki upgrades matter</a>
Agnease 11.2 279 </p>
280 </div>
281
Agnease 1.1 282 <div class="resource-cta">
283 <h3>Need help reviewing XWiki customizations?</h3>
284 <p>
285 If your XWiki instance includes custom scripts, dashboards, workflows, templates, integrations or Java
Agnease 2.1 286 extensions, a customization review can help identify what is safe, what needs documentation and what should be
287 tested before the next upgrade.
Agnease 1.1 288 </p>
289 <a class="btn btn-primary" href="$xwiki.getURL('contact.WebHome')">Request a customization review</a>
290 </div>
291
292 </article>
293 </div>
294 </div>
295 </section>
Agnease 2.1 296
Agnease 12.1 297 <script type="application/ld+json">
298 {
299 "@context": "https://schema.org",
300 "@type": "FAQPage",
301 "mainEntity": [
302 {
303 "@type": "Question",
304 "name": "Does custom development make XWiki harder to upgrade?",
305 "acceptedAnswer": {
306 "@type": "Answer",
307 "text": "Not automatically. Custom development becomes harder to upgrade when it is undocumented, mixed with regular content, applied directly in production or missing from the upgrade validation plan. Well-organized custom work can remain maintainable across upgrades."
308 }
309 },
310 {
311 "@type": "Question",
312 "name": "Where should XWiki custom code be stored?",
313 "acceptedAnswer": {
314 "@type": "Answer",
315 "text": "Custom wiki pages, scripts, templates and configuration should usually be kept in dedicated technical spaces. Code and important assets should also be tracked in a source control system, such as Git, so changes are not stored only in the production wiki."
316 }
317 },
318 {
319 "@type": "Question",
320 "name": "When should an XWiki customization become an extension?",
321 "acceptedAnswer": {
322 "@type": "Answer",
323 "text": "Packaging a customization as an extension is useful when the feature becomes complex, reusable, business-critical or shared across multiple instances. Java components, event listeners, scheduled jobs and integrations often benefit from an extension-based approach."
324 }
325 },
326 {
327 "@type": "Question",
328 "name": "What should be tested after an XWiki upgrade?",
329 "acceptedAnswer": {
330 "@type": "Answer",
331 "text": "Besides standard pages, the validation should include custom dashboards, templates, macros, workflows, permissions, notifications, PDF exports, scheduled jobs, integrations and any custom applications used by the organization."
332 }
333 },
334 {
335 "@type": "Question",
336 "name": "Why should configuration be kept outside custom code?",
337 "acceptedAnswer": {
338 "@type": "Answer",
339 "text": "Values such as group names, target spaces, external URLs, email recipients and workflow settings can change over time. Keeping them in configuration pages or preference objects makes custom features easier to adapt without changing the implementation."
340 }
341 }
342 ]
343 }
344 </script>
345
Agnease 1.1 346 {{/html}}
347 {{/velocity}}