我已经制作了一个普通的JSP应用程序原型。所有页面都可以正常工作。现在,我已经添加了Spring MVC来开始实现动态行为。只需添加DispatcherServlet并使用此配置:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan base-package="my.controllers" />
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/views/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
开始出现两个错误:
首先,当我做一个:
<%@page import="my.components.Button"%>
<%@page import="my.components.Label"%>
出现错误:
Only a type can be imported. my.components.Label resolves to a package
我的包结构是:
my.components
Button
Label
Textbox
etc...
my.model
my.data
...
其次,在没有导入的页面中,当我使用jsp:include(必须使用它,因为JSP片段使用参数)时,会出现此错误:
org.apache.jasper.JasperException: java.lang.ClassNotFoundException: org.apache.jsp.WEB_002dINF.views.fragments.header_jsp
看起来很奇怪,因为没有使用Spring MVC所有运行都很完美。有什么想法吗?