SSM
文章平均质量分 52
a599174211
这个作者很懒,什么都没留下…
展开
-
java.lang.ClassCastException: java.math.BigInteger cannot be cast to java.lang.Long
MySQL更新到8.0.11之后连接数据库时会报出错误Your login attempt was not successful, try again.Reason: Could not get JDBC Connection; nested exception is java.sql.SQLException: java.lang.ClassCastException: java.math...原创 2018-11-09 09:48:52 · 694 阅读 · 0 评论 -
java.sql.SQLException: The server time zone value '???ú±ê×??±??' is unrecognized or represents mor
使用的数据库是MySQL和驱动都是8.0.11连接数据库需要做如下修改1. 加载类“com.mysql.jdbc.Driver”。这已被弃用。新的驱动程序类是`com.mysql.cj.jdbc.Driver'。jdbc.driverClass=com.mysql.jdbc.Driver修改为jdbc.driverClass=com.mysql.cj.jdbc.Driverr...原创 2018-11-09 10:12:33 · 813 阅读 · 1 评论 -
java报错:The reference to entity "characterEncoding" must end with the ';' delimiter.
java关于报错:The reference to entity "characterEncoding" must end with the ';' delimiter. Java 解析XML文件错误。错误信息提示代码类似如下:The reference to entity "characterEncoding" must end with the ';' delimiter.or...转载 2018-11-09 10:44:51 · 575 阅读 · 1 评论 -
配置Mybatis generator代码生成器插件
1.新建maven项目,在pom.xml文件中添加mybatis.generatorjar包 <dependency> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-core</artifactId> ...原创 2018-11-09 13:36:58 · 168 阅读 · 0 评论 -
logback的使用和logback.xml详解
一、logback的介绍Logback是由log4j创始人设计的另一个开源日志组件,官方网站: http://logback.qos.ch。它当前分为下面下个模块:logback-core:其它两个模块的基础模块 logback-classic:它是log4j的一个改良版本,同时它完整实现了slf4j API使你可以很方便地更换成其它日志系统如log4j或JDK14 Logging l...转载 2018-11-09 16:13:46 · 140 阅读 · 0 评论 -
ssm框架整合相关文件配置
1.新建maven项目在pom.xml中如下配置<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 http://mav...原创 2018-11-09 16:40:24 · 194 阅读 · 0 评论 -
严重: Context initialization failed org.springframework.beans.factory.BeanDefinitionStoreException: I
严重: Context initialization failedorg.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from ServletContext resource [/WEB-INF/applicationContext.xml]; nest...原创 2018-11-19 14:16:05 · 2781 阅读 · 0 评论 -
Spring MVC maven工程遇到No mapping found for HTTP request with URI问题的解决方案
1.记录一下,检查项目所有的配置都没有问题,在eclipse上能正常运行能正常访问.但是在idea上死活都报404.网上试了好多方法一直没有找到解决的方法.后来在idea上新建了一个最简单的工程用的相同的配置,能正常访问,于是把新建工程里面的web.xml和pom.xml替换了有问题项目的里面的,居然可以正常访问了,最后发现原来是pom.xml文件,打包格式不一样,一个pom一个war.2.解...原创 2018-11-23 17:45:16 · 758 阅读 · 0 评论 -
JSPs only permit GET POST or HEAD的解决方案
1.在web.xml中加入如下代码<filter> <filter-name>hiddenHttpMethodFilter</filter-name> <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class> &l...原创 2018-12-10 15:39:58 · 906 阅读 · 1 评论