我的mybatis 3.4.1 获取ParameterHandler 不用反射,通过statementHandler.getParameterHandler() 即可获取!不知道老师的mybatis版本多少!
2017-05-01
源码我大致看了下:
@SuppressWarnings("unchecked")
protected T newInstance(MapperProxy<T> mapperProxy) {
return (T) Proxy.newProxyInstance(mapperInterface.getClassLoader(), new Class[] { mapperInterface }, mapperProxy);
}
这里返回已经强转为T了!
@SuppressWarnings("unchecked")
protected T newInstance(MapperProxy<T> mapperProxy) {
return (T) Proxy.newProxyInstance(mapperInterface.getClassLoader(), new Class[] { mapperInterface }, mapperProxy);
}
这里返回已经强转为T了!
2017-04-30
这老师真是我见过最赞的老师,把Servlet和JDBC复习了一遍,敲代码都用框架的思想,相对于教我们语法,思想的引导也并驾齐驱,真是比大学的老师和培训机构的老师更加负责任,深度赞一个!
2017-04-28