brand-demo运行中的问题

运行报错

HTTP Status 500 - /brand.jsp (line: 2, column: 62) Unable to read TLD "META-INF/c.tld" from JAR file "file:/D:/maven_repository/taglibs/standard/1.1.2/standard-1.1.2.jar": org.apache.jasper.JasperException: Failed to load or instantiate TagLibraryValidator class: org.apache.taglibs.standard.tlv.JstlCoreTLV
image
解决:在pom.xml文件中,jsp依赖加上scope标签
<scope>provided</scope>
image

品牌名称 企业名称 没有数据

image
原因:对应实体类的属性名称和数据库字段名称不一致
解决:使用ResultMap映射:
1,在BrandMapper.xml中添加映射
image
2,在BrandMapper接口中使用注释
image

添加到MYSQL数据库中的记录出现乱码

image
解决:在AddServlet中,处理post乱码
request.setCharacterEncoding("utf-8");
image

posted @ 2022-07-24 20:13  Crazy_chicken  阅读(132)  评论(0)    收藏  举报