当前位置: 代码迷 >> 综合 >> Daily errors about log encoding and web page garbled characters
  详细解决方案

Daily errors about log encoding and web page garbled characters

热度:85   发布时间:2023-11-22 17:24:13.0

Daily errors about log encoding and web page garbled characters

错误一:

在使用Maven时,启动插件Tomcat在控制台输出日志中中文汉字乱码

在这里插入图片描述

乱码如下:

改为GBK即解决;在这里插入图片描述

错误二:

1552311028207

如上 在网页上出现中文乱码,是在jsp页面缺少头部文件

1552311098974在这里插入图片描述

添加头部文件即可解决

错误三:

1552311217117在这里插入图片描述

在springMVC的controller 中的参数和返回值是 必须包含 Model 参数 和 返回值必须为String类型的

错误四:

1552311431465在这里插入图片描述

在Maven项目整合中的web.xml中指定spring配置文件的路径时,必须指定到service中的applicationContext_service.xml

1552311687166在这里插入图片描述

applicationContext_service.x在这里插入图片描述ml 中需要指定到applicationContext_dao.xml

  相关解决方案