240 发简信
IP属地:河北
  • 2019-08-07

    static int LoadKey(){int nRet = 0, nIndex = 0;char sTmk[16] = {0};char s...

  • Gson是何方妖孽

    Gson是Google提供的,用来在Java对象和Json数据之间进行映射的java类库。 可以将一个Json字符转换为一个Java对象,或者将...

  • FastDFS、pojo

    FastDFS distributed file system 分布式文件系统 pojo plain ordinary java object ...

  • spring的使命

    spring的使命:简化Java开发 降耦合的一种方式为 依赖注入,而构造器注入是依赖注入的一种。 创建应用组件之间协作的行为通常称为装配。

  • @PostConstruct & @PreDestroy

    这两个注解影响 Servlet生命周期。 用来修饰一个非静态的void()方法,而且这个方法不能有抛出异常声明。 使用方式一: @PostC...

  • @Retention @Target @Document @Inherited

    Java中的元注解: @Retention 注解保留的位置 @Retention(Retention.Policy.SOURCE) //注解仅...

  • @Bean

    @Bean是一个方法级别上的注解,主要用在 @Configuration注解的类里,也可以用在@Component注解的类里。 bean在 @C...

  • @RestController

    @RestController 是@ResponseBody 和 @Controller 的组合注解。

  • mapper.xml

    select * from USER where id = #{id} id: 唯一标识一个statement #{}: 表示一个占位符...