This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch fix/WW-5416-action-extension-404 in repository https://gitbox.apache.org/repos/asf/struts-examples.git
commit 3ca46b8e09863b54f539a1ab6c51b073837f8bf9 Author: Lukasz Lenart <[email protected]> AuthorDate: Thu Jul 23 20:37:40 2026 +0200 WW-5416 fix(helloworld): restore default struts.action.extension Removing the ',' override restores the framework default 'action,,' so the documented .action URLs return 200 instead of 404. Co-Authored-By: Claude Opus 4.8 <[email protected]> --- helloworld/src/main/resources/struts.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/helloworld/src/main/resources/struts.xml b/helloworld/src/main/resources/struts.xml index c7d9171..45529a3 100755 --- a/helloworld/src/main/resources/struts.xml +++ b/helloworld/src/main/resources/struts.xml @@ -6,7 +6,6 @@ <struts> <constant name="struts.devMode" value="true"/> - <constant name="struts.action.extension" value=","/> <constant name="struts.allowlist.packageNames" value="org.apache.struts.helloworld.model"/> <package name="basicstruts2" namespace="/" extends="struts-default">
