1. 符号英语2018-08-24

    + plus 加号;正号 - minus 减号;负号 ± plus or minus 正负号 × is multiplied by 乘号 ÷ is divided by 除号 = is equal to 等于号 ≠ is not equal to 不等于号 ≡ is equivalent to 全等于号 ≌ is equal to or approximately equal to 等于或约等于号 & ...

    阅读全文
  2. Create JWT的在线工具: http://jwtbuilder.jamiekurtz.com http://kjur.github.io/jsjws/tool_jwt.html 验证JWT的在线工具 http://jwt.io/ Base64 encode/decode的在线工具: https://www.base64encode.org https://www.base64decode.org ...

    阅读全文
  3. food & drug administration (FDA) corrective and preventive actions (CAPA) FDA CAPA new product introduction (NPI)   printed circuit board (PCB)  design for manufacturability (DFM)  Design for Excellence (DFX) ...

    阅读全文
  4. Operating as a community of like-minded professionals, OWASP issues software tools and knowledge-based documentation on application security. Everyone is free to participate in OWASP and all of our materials are available under a free an ...

    阅读全文
  5. 本文是学习springmvc官方文档的学习摘要。 https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html#mvc-servlet   知识点 1) DispatcherServlet DispatcherServlet WebApplicationInitializer AbstractAnnotationConfig ...

    阅读全文
  6. 申明:本文仅是读书笔记,内容未必能深入讲解。深入理解后再写篇总结。   设计愿景和背景比较: Angular: One framework. Mobile & desktop. (Develop across all platforms), 是基于 TypeScript 的 Javascript 框架,由 Google 进行开发和维护,它被描述为“超级厉害的 JavaScript MVW 框架”。最初于20 ...

    阅读全文
  7. MVC - Model-View-Controller MVP - Model-View-Presenter MVVM - Model-View-ViewModel MVW / MV* - Model-View-Whatever Both MVP and MVVM are derivatives of MVC. The key difference between it and it’s derivatives&nb ...

    阅读全文
  8. Spring Cloud学习过程中相关的知识点和软件项目: (1) Cloud Foundry: https://www.cloudfoundry.org/ ​   (2)Pivotal Web Services: https://run.pivotal.io/ (3)Zookeeper: https://zookeeper.apache.org/doc/current/zookeeperSt ...

    阅读全文
  9. 1.Nouns 名词是表示人或事物名称的词,通常要与冠词连用。 例如: the bus (公共汽车)   the apple (苹果) 有些名词仅有单数形式。 例如: The information is positive.   (信息是有利的。)   ...

    阅读全文
  10. Cynefin框架2019-07-31

    Cynefin框架最早是在1999年由威尔士学者Dave Snowden在知识管理与组织战略中提出的. 这个框架用于描述问题, 环境与系统., 说明什么环境, 适合使用什么解决方案. Cynefin框架有5个域:简单(simple)域,复杂(complex)域,繁杂(complicated)域,混乱(chaotic)域,无序(disorder)域。 领导者可以根据分析环境属于哪种域,做出正确的决策。 ...

    阅读全文
  11. spring-boot-autoconfigure-2.1.4.release.jar下的spring-autoconfigure-metadata.properties #Thu Apr 04 02:08:30 GMT 2019 org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration.AutoConfigureAfter=org.springframework.b ...

    阅读全文
  12. AOP concepts2019-08-12

    Let us begin by defining some central AOP concepts and terminology. These terms are not Spring-specific... unfortunately, AOP terminology is not particularly intuitive; however, it would be even more confusing if Spring used its own terminology. ...

    阅读全文
  13. Besides ApplicationContextAware and BeanNameAware (discussed earlier), Spring offers a wide range of Aware callback interfaces that let beans indicate to the container that they require a certain infrastructure de ...

    阅读全文
  14. MvcUriComponentsBuilder 和 ControllerMethodInvocationInterceptor的解读   ControllerMethodInvocationInterceptor实现了CGLIB的MethodInterceptor,所以是CGLIB动态代理的方法拦截器,从命名来看是对Controller的方法做了争强。同时也实现了org.aopalliance.intercept.MethodInterceptor private ...

    阅读全文
  15. 本文链接:https://blog.csdn.net/strivezxq/article/details/44560771  把spring 相关类做了下整理,把spring主要涉及的类都整理成类图,方便查看它们之前的关系,也能帮助更好的阅读分析源码. 1. IOC容器 BeanFactory类图: 2.  资源Resource相关类图: 3. 资源加载器ResourceLoader相关类图: 4. spring Bean定义解析器相关: ...

    阅读全文
  16. 下面这篇文章对Controller的方法参数工作原理解释的非常不错,值得参阅。 https://www.cnblogs.com/fangjian0423/p/springMVC-request-param-analysis.html   另外,此处可以配合spring framework的官方文档中的Spring Web MVC->Annotation Controller->Handler Methods中的Method Arguments和Return ...

    阅读全文
  17.  官方文档: https://docs.oracle.com/javaee/7/api/javax/persistence/ManyToMany.html     参考文档: What is An Association? : https://docs.oracle.com/cd/A97336_01/buslog.102/bc4j/developing_bc_projects/bc_awhatisanassoc.ht ...

    阅读全文
  18. 111420

    ngixn设计方向代理后,网址大部分功能能工作,但是有些访问却失败,请求返回403错误,直接访问被代理的server工作正常。只能说明一个问题,代理还有参数没有设置。 查看请求和response. 发现XSRF check failed。 最终解决方案:注意,这两个都要添加。Origin 值为proxy_pass的值相同。 # Pass the csrf token (see https://de.wikipedia.org/wiki/Cross-Site-Requ ...

    阅读全文
  19. 41830

    字符串搜索问题之前没有好好想,正常使用自带API或者正值表达式,或者第一反应就是常规的暴力搜索。其实这里面有很多很好玩的算法。Robin-Karp算法比较容易理解,而利用有限自动机进行匹配就开始晕了,最后的KMP算法代码不多,但是计算前缀的方法真是很神奇,静下心想了好久才开窍。神奇!神奇!很神奇。 本文讲一个很神奇的搜索字符串中以某一位开始的最长回文的算法。问题可以简化为从字符串首位开始的最长回文。 问题分析: public String getLonggestLeftPa ...

    阅读全文
  20. 数独2020-08-17

    数独是一种风靡全球的智力游戏,也称为Sudoku,Number Place。正规的数独题目需要保证每个题目仅有一个解。   数独规则 标准数独由9行,9列共81的小格子构成。 分别在格子中填入1到9的数字,并满足下面的条件。 每一行都用到1,2,3,4,5,6,7,8,9 每一列都用到1,2,3,4,5,6,7,8,9 每3×3的格子都用到1,2,3,4,5,6,7,8,9   Sudo1: htt ...

    阅读全文
4142