Does the order of the imports in a JSP page matter? I have a JSP page that worked just fine in JBoss 4, but is not compiling in JBoss 6. These are the imports:
<%@ page import="com.at.enp.SecurityManager,
com.at.enp.util.webUtil,
com.at.vb.mod.fa.db.RPData.ResetOption,
com.at.enp.modules.loyalty.MetricSetting,
java.util.List,
com.at.presentation.security.EFRightsGroup,
com.at.enp.modules.loyalty.BonusPlanHandler,
com.at.presentation.bean.ef.RewardType,
java.text.SimpleDateFormat,
com.at.util.*"%>
The offending import is : com.at.vb.mod.fa.db.RPData.ResetOption ResetOption is a public class inside of RPData. If I move the import down in the import list the page compiles just fine. I have no idea why that is making a difference. Any help would be appreciated.