摘要: 1.@JsonIgnoreProperties 指定的字段不会被序列化,如下则ExamPaper的directory字段不会被序列化 2.@JsonIgnore 被注解的字段不会被序列化 3.@JsonManagedReference和@JsonBackReference 序列化时,@JsonBac 阅读全文
posted @ 2018-04-04 21:29 woncode 阅读(4101) 评论(0) 推荐(0)
摘要: 如此博文所述,Spring Boot 对静态资源映射提供了默认配置 默认将 /** 所有访问映射到以下目录:classpath:/staticclasspath:/publicclasspath:/resourcesclasspath:/META-INF/resources 但是可以通过applic 阅读全文
posted @ 2018-03-30 23:56 woncode 阅读(962) 评论(0) 推荐(0)
摘要: 要点: 配置启动类 继承WebApplicationInitializer并重新onStartup方法,加载配置类,相当于配置web.xml文件 AnnotationConfigApplicationContext:用来把使用注解的配置类加载到spring容器中,也就是把那些在配置类中定义的bean 阅读全文
posted @ 2017-09-05 22:04 woncode 阅读(2595) 评论(0) 推荐(0)
摘要: 先在类路径application.properties 只使用Spring+Hibernate配置 配置DataSource、LocalSessionFactoryBean、HibernateTransactionManager 使用Spring+Hibernate+SpringData配置 配置: 阅读全文
posted @ 2017-08-13 22:44 woncode 阅读(374) 评论(0) 推荐(0)
摘要: Maven依赖 要点 configureGlobal(AuthenticationManagerBuilder auth)方法:用来配置获取和核对用户信息 configure(HttpSecurity http)方法:用来配置访问资源对应的权限 开启Spring Security:在配置类头上加注解 阅读全文
posted @ 2017-07-16 19:54 woncode 阅读(8826) 评论(1) 推荐(1)