распорки-config.xml
<action-mappings>
<action input="/index.jsp" name="HelloWorldActionForm"
path="/HelloWorld" scope="session" type="com.vaannila.HelloWorldAction">
<forward name="success" path="/helloWorld.jsp"/>
</action>
<action path="/Welcome" forward="/welcomeStruts.jsp"/>
</action-mappings>
helloWorld.jsp
<%@taglib uri= "/WEB-INF/struts-bean.tld"prefix="bean" %>
<html>
<body>
<bean:write name="HelloWorldActionForm" property="message" />
</body>
</html>
Исключение, которое я получаю:
org.apache.jasper.JasperException: /helloWorld.jsp (line: 4, column: 54)
The JSP specification requires that an attribute name is preceded by whitespace
Я не могу понять, почему наступает исключение.