摘要:
1.JSON one of simplest and most popular formats We can represent an object in plain text with fields of type: String, Number, Boolean, Array, Object E 阅读全文
摘要:
阅读全文
摘要:
1.Spring 1.1 Spring MVC 参数的封装 1.传统的URL localhost:8080?id=1&name=tom 2.基于RESTful风格的URL localhost:8080/1/tom 前后端分离的开发一般是基于RESTfull,具体规则是4中请求分别表示不同的业务 GE 阅读全文
摘要:
Web 项目的搭建大致流程和这个链接里写的一致 https://blog.csdn.net/m0_64351669/article/details/127309413 关于Tomcat的下载 选择zip 下载好后进行configuration的配置 可能会有permission的报错 在termin 阅读全文
摘要:
po主原本是通过c++进行刷题的,对于C++而言还是很方便输入和输出的 最近刷题都在用python,主要是因为python编写起来比较方便,加上想尽快刷掉leetcode上的必刷题,所以一时间不知道应该如何用python进行IO流的输入和输出 ————————————————版权声明:本文为CSDN 阅读全文
摘要:
原文源自:https://stackabuse.com/a-guide-to-jpa-with-hibernate-relationship-mapping/ Java Persistence API(JPA)是Java生态系统的持久性标准。 它允许我们将我们的领域模型直接映射到数据库结构中, 然后 阅读全文
摘要:
20. Valid Parentheses 注意边界问题,特别是len(stack)==0这个细节需要注意 class Solution: def isValid(self, s: str) -> bool: stack = [] lib = {} lib[')'] = '(' lib[']'] = 阅读全文
摘要:
https://developer.mozilla.org/en-US/docs/Glossary/Preflight_request import org.springframework.core.Ordered; import org.springframework.core.annotatio 阅读全文
摘要:
起因:经常在Config文件里看见Bean的存在,所以开始探究Bean的概念还使用方法。 原文来自:https://gustavopeiretti.com/spring-boot-bean-annotation/#:~:text=What%20is%20%40Configuration%20in%2 阅读全文
摘要:
● 739. 每日温度 ● 496.下一个更大元素 I 单调栈 那有同学就问了,我怎么能想到用单调栈呢? 什么时候用单调栈呢? 通常是一维数组,要寻找任一个元素的右边或者左边第一个比自己大或者小的元素的位置,此时我们就要想到可以用单调栈了。时间复杂度为O(n)。 那么单调栈的原理是什么呢?为什么时间 阅读全文