JDK8新特性:使用Optional避免null导致的NullPointerException

https://blog.csdn.net/aitangyong/article/details/54564100

lambda表达式

https://blog.csdn.net/wenwen513/article/details/82822918

Enum

spring的几个注解@RequestHeader

https://blog.csdn.net/sinat_36713319/article/details/77163305

@ModelAttribute

https://blog.csdn.net/lovesomnus/article/details/78873089

@Valid

https://blog.csdn.net/xzmeasy/article/details/76098188

@Value

自定义验证

https://www.cnblogs.com/light-zhang/p/8359134.html

1@PreAuthorize("permitAll")在调用方法前,基于表达式计算结果来限制方法访问
2@Valid注解用于校验,所属包为:javax.validation.Valid。

 

spring 的profile属性

https://www.cnblogs.com/wade-luffy/p/6066932.html

spring security

https://www.cnblogs.com/jaylon/p/4905769.html

http://elim.iteye.com/blog/2157769

指定登录成功页面

通过authentication-success-handler-ref指定

  authentication-success-handler-ref对应一个AuthencticationSuccessHandler实现类的引用。如果指定了authentication-success-handler-ref,登录认证成功后会调用指定AuthenticationSuccessHandler的onAuthenticationSuccess方法。我们需要在该方法体内对认证成功做一个处理,然后返回对应的认证成功页面。

org.hibernate.Criteria

https://www.cnblogs.com/liunanjava/p/4340103.html

 

Hibernate配置

Idea 中用Spring + SpringMVC + Hibernate gradle实现 “hello world”

https://blog.csdn.net/bestfeng1020/article/details/73793734

hibernate注解及使用

@OneToOne
@PrimaryKeyJoinColumn(referencedColumnName = "company_id")
@Fetch(value = FetchMode.JOIN)

Arrays.asList

static
List
asList(T... a)
          返回一个受指定数组支持的固定大小的列表。

 

org.apache.commons.lang3.tuple.Pair
net.spy.memcached.MemcachedClient

 

org.springframework.cache.support.SimpleValueWrapper;
Character.isDigit(cs.charAt(i))

isDigit() 方法用于判断指定字符是否为数字。http://www.runoob.com/java/character-isdigit.html

返回指定索引处的字符。http://www.runoob.com/java/java-string-charat.html

 

通用的分页思路

https://blog.csdn.net/change_on/article/details/70244782

如何使用github的pull request功能

https://blog.csdn.net/wangzi11111111/article/details/79861056

python从json中提取数据

https://www.cnblogs.com/xiaojiayu/p/5195298.html

git错误failed to push some refs to

https://blog.csdn.net/winnershili/article/details/78888548

 

异常

Java异常Throwable分为两类:Error和Exception
Error类是错误,程序本身不能处理的。

Exception有分为两类:IOException(非运行时异常)和RuntimeException(运行时异常)
其中RuntimeException是在程序设计时尽量避免的。
除了RuntimeException及其子类以外,其他的Exception类及其子类都属于可查异常。这种异常编译器要求强制处置,要么try-cathch,要么在方法名后面抛出。
不可查异常(编译器不要求强制处置的异常):包括运行时异常(RuntimeException与其子类)和错误(Error)。

try(){}catch{}

https://blog.csdn.net/qq_33543634/article/details/80725899

自定义异常类

com.fasterxml.jackson.core.JsonGenerator api

git如何合并远程2个分支

https://blog.csdn.net/tmacsky/article/details/78795894

如何自定义Spring restTemplate请求及回调

https://blog.csdn.net/chemphone/article/details/80638116

Google Guava

https://www.cnblogs.com/willsuna/p/5224504.html

mokito

https://blog.csdn.net/andy2019/article/category/7505099

你可能感兴趣的:(java基础)