This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/struts-archetypes.git
The following commit(s) were added to refs/heads/master by this push: new 85584f5 Uses ${package} to generate a proper package 85584f5 is described below commit 85584f5d8f95cdc51fd0e4feb02179a87a7ac962 Author: Lukasz Lenart <lukaszlen...@apache.org> AuthorDate: Tue Jun 2 09:08:33 2020 +0200 Uses ${package} to generate a proper package --- .../archetype-resources/src/main/resources/applicationContext.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/resources/applicationContext.xml b/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/resources/applicationContext.xml index 2449c40..92744d6 100644 --- a/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/resources/applicationContext.xml +++ b/struts2-archetype-starter/src/main/resources/archetype-resources/src/main/resources/applicationContext.xml @@ -3,6 +3,6 @@ <beans> <!-- Example of Struts action instantiated by Spring --> - <bean id="helloWorldAction" class="com.demo.HelloWorldAction" scope="prototype"/> + <bean id="helloWorldAction" class="${package}.HelloWorldAction" scope="prototype"/> </beans>