SSM开发Web项目问题解决记录

版权声明:本文来自 Crocutax 的博客 , 转载请注明出处 http://crocutax.com

Invalid content was found starting with element 'init- param'

在配置Spring前端控制器时,如果按照如下方式配置那么标签就会有错误提示Invalid content was found starting with element 'init- param' .


    dispatcher
    org.springframework.web.servlet.DispatcherServlet
    1
    
        contextConfigLocation
        WEB-INF/dispatcher-servlet.xml
    


解决方案:

1 放在标签的后面即可.即


   ...
    
      ...
    
     1

Could not open ServletContext resource

错误信息:Could not open ServletContext resource [/WEB-INF/dispatcher-servlet.xml]

web.xml中,加载springmvc的配置文件时,如果不指定contextConfigLocation路径,那么默认加载的是/WEB-INF/servlet名称-serlvet.xml(例如dispatcher-servlet.xml , springmvc-servlet.xml)

FileNotFoundException

错误信息: java.io.FileNotFoundException: class path resource [applicationContext.xml] cannot be opened because it does not exist

如果通过maven管理web项目,并且把配置文件放在了resources目录下,那么此时配置applicationContext.xml路径时,需要使用如下方式:


    contextConfigLocation
    classpath:applicationContext.xml
    

web.servlet.PageNotFound.noHandlerFound

错误信息:web.servlet.PageNotFound.noHandlerFound No mapping found for HTTP request with URI [/helloworld] in DispatcherServlet with name 'dispatcher'

Stackoverflow问题链接直达 里列举了诸多的可能性原因.我这里当时的原因是:

  1. Spring扫描包配置问题,导致未扫描到指定的Controller
  2. 编译文件输出路径问题

form表单提交时类型转换异常

错误信息:Unable to convert string [${createtime}] to class [java.util.Date] for attribute [value]: [Property Editor not registered with the PropertyEditorManager]

需要自定义参数绑定,完成日期类型的转换

1.定义日期转换器

public class CustomDateConverter implements Converter {

    public Date convert(String source) {
        
        //实现 将日期串转成日期类型(格式是yyyy-MM-dd HH:mm:ss)
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        
        try {
            //转成直接返回
            return simpleDateFormat.parse(source);
        } catch (ParseException e) {
            e.printStackTrace();
        }
        //如果参数绑定失败返回null
        return null;
    }

}

2.dispatcher-servlet.xml中配置转换器

 



    
    
        
            
            
        
    

完成!

javax.servlet.http.httpservlet 不存在

将tomcat中lib包里的servlet-api.jar(例如D:\Dev\Tomcat9\lib\servlet-api.jar) 复制到项目中 , 并添加依赖 , 重新build即可.

MultipartException:form表单文件上传失败

错误信息: MultipartException: The current request is not a multipart request

解决方案:

需要在form表单上添加enctype="multipart/form-data属性

js文件加载失败:XXX.js 404 (Not Found)

在dispatcher-servlet.xml中添加静态资源解析



标签onclick属性调用js function()方法无效

错误信息:Uncaught ReferenceError: [
function] is not defined at HTMLInputElement.onclick

解决方法:
先添加jquery依赖,再定义另外的script标签,并在其中声明function

<%--引入js的包--%>


HttpMediaTypeNotSupportedException

错误信息:HttpMediaTypeNotSupportedException: Content type 'application/json;charset=UTF-8' not supported

原因:jackson依赖没有添加完整


    com.fasterxml.jackson.core
    jackson-databind
    2.9.0.pr4



    com.fasterxml.jackson.core
    jackson-core
    2.9.0.pr4



    com.fasterxml.jackson.core
    jackson-annotations
    2.9.0.pr4

配置完整就好了.

你可能感兴趣的:(SSM开发Web项目问题解决记录)