I have experienced an error in Orion whenever I put imports on multiple
lines in my .jsp file as follows:
<%@ page import="
java.util.*,
com.foo.servlet.*,
com.foo.config.*,
com.foo.config.helper.*,
com.foo.config.element.*,
com.foo.config.element.helper.*
" %>
If I put the imports all on one line, there is no problem. Weblogic works
with the imports either way. The error is at the bottom of the email.
Basically I saw in a Servlet that it generated (but I can't find now) that
there were a bunch of blank import lines.
My question is: Is this a feature or a problem?
Thanks,
Robin Green
parsing JSP page /src/com/foo/jsp/OrderStatusHome.jsp
Syntax error in source
__jspPage2.java:5: Identifier expected.
import
^
__jspPage2.java:53: Class LocaleNegotiator not found.
LocaleNegotiator negotiator = new LocaleNegotiator(bundleName,
acceptLanguage, acceptCharset);
^
__jspPage2.java:53: Class LocaleNegotiator not found.
LocaleNegotiator negotiator = new LocaleNegotiator(bundleName,
acceptLanguage, acceptCharset);
^
__jspPage2.java:54: Class Locale not found.
Locale locale = negotiator.getLocale();