# user-platform **Repository Path**: allen_1995/user-platform ## Basic Information - **Project Name**: user-platform - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-03-03 - **Last Updated**: 2021-07-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # geekbang-lessons 极客时间课程工程 ## week03作业 1. 引入jolokia实现jmx http访问代理 http://localhost:8080/user_web_war/jolokia ## week05作业 1. 修复本程序 org.geektimes.reactive.streams 包 - org.geektimes.reactive.streams.DefaultSubscriber - onNext() - org.geektimes.reactive.streams.DefaultPublisher - main() 2. 继续完善 my-rest-client POST 方法 - org.geektimes.rest.client.HttpPostInvocation - org.geektimes.rest.demo.RestClientDemo ## week06作业 1. org.geektimes.cache.serializer 2. org.geektimes.cache.redis.lettuce ## week08作业 **这期作业未提交代码** 使用springboot版本1.5,使用两个类分别继承WebSecurityConfigurerAdapter,如果存在冲突配置的情况下,优先级高的配置类会覆盖优先级低的类。 关于如何解决这个问题的思考,还是需要通过规范配置行为来避免。 - 对于AuthenticationManagerBuilder的配置,用户认证的统一配置在一处。 - 对于HttpSecurity,可以用antMatcher匹配指定的路径,规范路径下的 - 不同的路径可以存在冲突的配置,因为匹配的规则不一样,这里不会导致太大的问题。 - 相同的路径匹配规则,存在冲突的话,优先级高的配置类里的配置才能生效。(SecurityFilterChain是有顺序的)