自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 AttributeAccessor

public interface AttributeAccessor { void setAttribute(String var1, @Nullable Object var2); @Nullable Object getAttribute(String var1); @Nullable Object removeAttribute(String v...

2018-08-10 12:30:42 416

原创 SpringMVC注解

@RequestMapping的属性    --value:指定请求的实际url值含某变量如:value="/get/{id}    (@PathVariable可提取变量值)    --method:如method="RequestMethod.POST"    --params:指定请求中必须包含指定的参数,如:params="action=mod"    --headers:...

2018-08-01 15:32:24 116

原创 Mybatis初级教程M

一.引入jar包:<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis --><dependency>    <groupId>org.mybatis</groupId>    <artifactId>mybatis</artifactId>   ...

2018-08-01 14:29:42 149

原创 PathMatchingResourcePatternResolver

核心方法源码:public Resource[] getResources(String locationPattern) throws IOException { Assert.notNull(locationPattern, "Location pattern must not be null"); if (locationPattern.startsWith("clas...

2018-07-23 12:30:31 1577

原创 ResourceLoader与ResourcePatternResolver

ResourceLoader源码如下:public interface ResourceLoader {    String CLASSPATH_URL_PREFIX = "classpath:";    Resource getResource(String var1);    @Nullable    ClassLoader getClassLoader();}Resour...

2018-07-23 11:48:19 454

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除