Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/eclipse/8.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
无法在此应用程序部署的web.xml或jar中解析spring表单标记uri_Spring_Eclipse_Spring Mvc_Taglib_Spring Form - Fatal编程技术网

无法在此应用程序部署的web.xml或jar中解析spring表单标记uri

无法在此应用程序部署的web.xml或jar中解析spring表单标记uri,spring,eclipse,spring-mvc,taglib,spring-form,Spring,Eclipse,Spring Mvc,Taglib,Spring Form,我正在从事JavaWeb项目(maven)并使用spring。在我使用spring表单标签之前,spring的一切都很好。运行jsp时,弹出错误, org.apache.jasper.jaspereException:绝对uri:[http://www.springframework.org/tags/form]无法在web.xml或与此应用程序一起部署的jar文件中解析 我从以下文件中给出代码: pom.xml 抛弃web.xml。您可以使用web.xml或WebApplicationIni

我正在从事JavaWeb项目(maven)并使用spring。在我使用spring表单标签之前,spring的一切都很好。运行jsp时,弹出错误,
org.apache.jasper.jaspereException:绝对uri:[http://www.springframework.org/tags/form]无法在web.xml或与此应用程序一起部署的jar文件中解析
我从以下文件中给出代码:

pom.xml

抛弃
web.xml
。您可以使用
web.xml
WebApplicationInitializer
,但不能同时使用这两种工具。在您的情况下,情况更糟,因为您的
web.xml
迫使您降低到Servlet API 2.4的级别,而不是3.x。@M.Deinum,感谢您为纠正错误所做的努力。我已经删除了web.xm和DispatcherServlet。错误保持不变。您的应用程序是否启动了Spring?我怀疑您的jar已经损坏,或者您正在使用一个太旧的servlet容器。在我使用spring表单标记之前,spring的一切都很好。我这样做是为了学习春天。我做了所有的基础工作,比如自动连线、bean类、依赖注入,还有这里的WebMVC。所有这些都可以很好地使用jsp html表单。
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.sd</groupId>
  <artifactId>springMVC</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>war</packaging>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.8.1</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-war-plugin</artifactId>
        <version>3.2.3</version>
        <configuration>
          <warSourceDirectory>WebContent</warSourceDirectory>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
     <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>4.1.8.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>4.1.8.RELEASE</version>
        </dependency>
        
    <!-- https://mvnrepository.com/artifact/org.springframework.security/spring-security-taglibs -->
<dependency>
    <groupId>org.springframework.security</groupId>
    <artifactId>spring-security-taglibs</artifactId>
    <version>3.2.4.RELEASE</version>
</dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.36</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>
  </dependencies>
</project>
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:web="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" id="WebApp_ID" version="2.4">
 <!--  <servlet>
    <servlet-name>springdemo</servlet-name>
    <servlet-class>
            org.springframework.web.servlet.DispatcherServlet
        </servlet-class>
  
  <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>/WEB-INF/springdemo-servlet.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
 </servlet>
  <servlet-mapping>
    <servlet-name>springdemo</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping> -->
</web-app>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
  <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>  
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>

<form:form path="student" action ="handleForm">

<form:label path="" value="Enter your personal information"></form:label>
<form:input path="name" /><br>
<form:label path="" value="Gender"></form:label>
Male:
<form:radiobutton path="gender" value="male"/><br>
Female:
<form:radiobutton path="gender" value="female"/><br>
<form:label path="" value="Age"></form:label>
<form:input path="age" /><br>
<input type="submit" value="submit">
</form:form>

 </body>
</html>
<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.xsd
   http://www.springframework.org/schema/context 
   http://www.springframework.org/schema/context/spring-context.xsd">
   
   <!-- Adding Support for Component Scan -->
   <context:component-scan base-package="com.springMVCcontroller" />
   
   <!-- Configure View Resolver -->
   <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
      <property name="prefix" value="/view/" />
      <property name="suffix" value=".jsp" />
   </bean>
 
   </beans>
package com.springMVCcontroller;

import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;

public class MyWebInitializer extends AbstractAnnotationConfigDispatcherServletInitializer {

    public MyWebInitializer() {
        // TODO Auto-generated constructor stub
    }

    @Override
    protected Class<?>[] getRootConfigClasses() {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    protected Class<?>[] getServletConfigClasses() {
        // TODO Auto-generated method stub
        return new Class[] {ConfigClass.class};
    }

    @Override
    protected String[] getServletMappings() {
        // TODO Auto-generated method stub
        return new String[] {"/"};
    }

}
package com.springMVCcontroller;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.view.InternalResourceViewResolver;

@Configuration
@ComponentScan({"com.springMVCcontroller"})
public class ConfigClass {
        @Bean
        public InternalResourceViewResolver viewResolver()
        {
            InternalResourceViewResolver ivr=new InternalResourceViewResolver();
            ivr.setPrefix("/view/");
            ivr.setSuffix(".jsp");
            return ivr;
        }

}