茗少
茗少
全部文章
分类
ACM心得(1)
dp(3)
JavaEE(11)
Javafx(1)
JavaSE(1)
java后端开发(1)
Letcode(8)
mysql(1)
Spring(1)
SQL(2)
企业真题(3)
图论(1)
总结(1)
搜索(2)
数论(1)
未归档(4)
构造(1)
模拟(13)
牛客网多校训练(1)
牛客网比赛(1)
项目(2)
归档
标签
去牛客网
登录
/
注册
茗少的博客
全部文章
(共60篇)
牛客网---SQL练习---查找字符串'10,A,B' 中逗号','出现的次数cnt
题目描述 查找字符串'10,A,B' 中逗号','出现的次数cnt。 SQL代码: select length("10,A,B")-length(replace("10,A,b",",","")) as c...
2019-12-29
0
498
学习SpringMVC第一天
一.环境配置: <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc --> <dependency> <groupId>org.springfr...
2019-12-29
0
444
学习SpringMVC第二天
一.跳转方式 1.默认的跳转方式是请求转发,即浏览器的网也路径不变,而浏览的内容变成了请求的内容 2.设置返回值字符串内容 2.1添加redirect+资源路径为重定向 2.2添加forward+资源路径为请求转发,或者省略forward 二.复杂参数 1.当表单传值为多个复...
2019-12-29
0
487
Spring学习第四天
一.事务的介绍 事务:是数据库操作的最小工作单元,是作为单个逻辑工作单元执行的一系列操作;这些操作作为一个整体一起向系统提交,要么都执行、要么都不执行;事务是一组不可再分割的操作集合(工作逻辑单元); 二.事务的4大特性 1 、原子性 事务是数据库的逻辑工作单位,事务中包含的各操作要么都做,...
2019-12-29
0
720
学习Spring第五天
Spring的常用注解 1.@Component创建类对象,相当于<bean> 2.@Service与@Component相同功能相同 2.1写在ServiceImp类上 3.@Repository与@Component功能相同 3.1写在数据访问类中,当SSM...
2019-12-29
0
497
redis下载以及Spring整合redis
Spring整合Redis 1.引入redis jar包 2.配置spring配置文件applicationContext.xml <?xml version="1.0" encoding="UTF-8"?> <be...
2019-12-29
0
526
SpringMVC的四种传值方式
一.SpringMVC的四种传值方式 1.传统Servlet进行传值 @ResquestMapping("demo1") public String demo1(HttpServletRequest req,HttpSession session){ req.setA...
2019-12-29
0
513
SpringMVC实现文件下载和上传
一.文件下载 1.使用<a></a>下载,不过浏览器会直接打开,不能打开才会下载 2.使用SpringMVC实现下载 @RequestMapping("download") public void download(String filename,...
2019-12-29
0
737
Bad Prices
题目描述: Polycarp analyzes the prices of the new berPhone. At his disposal are the prices for nn last days: a1,a2,…,ana1,a2,…,an, where aiai is the pric...
2019-12-29
0
688
Book Reading
题目描述: Polycarp is reading a book consisting of nn pages numbered from 11 to nn. Every time he finishes the page with the number divisible by mm, he w...
2019-12-29
0
499
首页
上一页
1
2
3
4
5
6
下一页
末页