1、在测试springmvc的程序的时候出现如下错误: pers.zhb.controller.HelloController#hello(Model) to { /haha}: There is already 'helloController' bean method pers.zhb.cont ...
分类:
其他好文 时间:
2020-04-30 09:46:59
阅读次数:
144
问题背景: 在做Struts2学习的页面访问时,配置了如下的两个<action>返回结果视图: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD St ...
分类:
移动开发 时间:
2020-04-17 23:31:14
阅读次数:
90
2017-08-29 14:30:49,951 [http-bio-8888-exec-2] ERROR [core.security.process.exception.ExceptionResolverCustom] - nested exception is org.apache.ibatis ...
分类:
其他好文 时间:
2020-04-02 01:35:38
阅读次数:
105
在学习网络框架Netty之前,先补充了一下自己对Java 几种IO模型的学习和理解。分别是 BIO、NIO、AIO三种IO模型。 ...
分类:
编程语言 时间:
2020-03-30 09:44:32
阅读次数:
106
有时候我们需要某个请求下的所有的traceId都是一致的,以获得统一解析的日志文件。便于排查问题。 为每一个请求分配同一个traceId据我所知有两种方式:MDC和ThreadLocal,MDC的内部实现也是ThreadLocal,下面分别介绍这两种方式。 一、MDC MDC(Mapped Diag ...
分类:
其他好文 时间:
2020-03-19 13:53:40
阅读次数:
188
一、用户名密码都正确的情况下被登录拦截器拦截 控制台报错:org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 'com ...
分类:
编程语言 时间:
2020-03-02 16:25:09
阅读次数:
89
验证要做三件事 1. 定义验证规则 2. 按验证规则进行检查 3. 报告验证的错误。 在把错误报告给API消费者的时候,报告里并不包含到底是服务端还是API消费者引起的错误,这是状态码的工作。而通常响应的Body里面会包含一组验证错误信息,API消费者可以把这些信息展示给API消费者的用户。 定义验 ...
分类:
Web程序 时间:
2020-02-15 15:50:30
阅读次数:
85
问题描述: 使用springboot,权限管理使用spring security,使用内存用户验证,但无响应报错: java.lang.IllegalArgumentException: There is no PasswordEncoder mapped for the id "null" 解决方 ...
分类:
移动开发 时间:
2020-02-14 10:31:36
阅读次数:
108
在spring security中设置默认的登录人的信息,遇到的异常信息: java.lang.IllegalArgumentException: There is no PasswordEncoder mapped for the id “null” 有些版本不要求这样子做,所以就不会有该问题的发 ...
分类:
移动开发 时间:
2020-01-20 22:36:34
阅读次数:
97
public static void main(String[] args) throws SQLException { DataSource ds = new ComboPooledDataSource(); JdbcTemplate jt = new JdbcTemplate(ds); Stri ...
分类:
数据库 时间:
2020-01-19 23:55:07
阅读次数:
165