欣喜悟空

文章
3
资源
0
加入时间
2年10月21天

Spring Security学习一:SpringSecurity入门

1 首先新建一个springboot项目,建立一个简单的Controller如下@RestControllerpublic class HelloController { @GetMapping(value="/hello") public String hello(){ return "hello"; } }此时访问将返回简单字符串如下2 在pom.xml中引入SpringSecurity <depen

【LeetCode with Python】 Two Sum

Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that y

Python 运行.py文件和交互式运行代码的区别

交互式运行代码会直接给出表达式的结果,运行代码文件必须print才能在控制台看到结果。直接给出结果:交互式a=1没有print是看不到结果的:1运行文件a=1有print才能看到结果:2运行文件a=1另:交互式中可以用下划线 _ 来查看上一次输出的结果。如果给下划线赋值,这个效果就没了。交互式下划线另另:如果变量的值是空,不会显示None2. 交互式输出会输出原始内容,pr...