Hi, On this page https://struts.apache.org/plugins/convention/#setup
if I have com.example.actions.HelloWorld.java and uk.mypackage.actions.HelloWorld.java with url http://localhost:8080/hello-world then uk.mypackage.actions.HelloWorld.java execute is run. If I have uk.example.actions.HelloWorld.java and com.example.actions.HelloWorld.java then com.example.actions.HelloWorld.java execute is run. uk.mypackage.actions.HelloWorld,java overrides the other two.

