From a14bf5e249391267a80af76ddf63e071663a4d03 Mon Sep 17 00:00:00 2001 From: James Holmes Date: Mon, 23 Jul 2007 01:01:37 +0000 Subject: [PATCH] Minor error message change. git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/branches/STRUTS_2_0_X@558574 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/struts2/spring/StrutsSpringObjectFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/spring/src/main/java/org/apache/struts2/spring/StrutsSpringObjectFactory.java b/plugins/spring/src/main/java/org/apache/struts2/spring/StrutsSpringObjectFactory.java index c6b9ecd77..75dcfb6e9 100644 --- a/plugins/spring/src/main/java/org/apache/struts2/spring/StrutsSpringObjectFactory.java +++ b/plugins/spring/src/main/java/org/apache/struts2/spring/StrutsSpringObjectFactory.java @@ -57,7 +57,7 @@ public class StrutsSpringObjectFactory extends SpringObjectFactory { ApplicationContext appContext = WebApplicationContextUtils.getWebApplicationContext(servletContext); if (appContext == null) { // uh oh! looks like the lifecycle listener wasn't installed. Let's inform the user - String message = "********** FATAL ERROR STARTING UP SPRING-STRUTS INTEGRATION **********\n" + + String message = "********** FATAL ERROR STARTING UP STRUTS-SPRING INTEGRATION **********\n" + "Looks like the Spring listener was not configured for your web app! \n" + "Nothing will work until WebApplicationContextUtils returns a valid ApplicationContext.\n" + "You might need to add the following to web.xml: \n" +