Wesley13 Wesley13
3年前
SSH框架和SSM框架
(一)SSH框架是Struts2Spring Hibernate  而SSM框架指的是SpringMVCSpringMybatis区别:1\.主要区别就是Struts2和SpringMVC的区别。【各种框架的对比】类中已经写了2\.Hibernate和Mybatis的区别Mybatis优势
Souleigh ✨ Souleigh ✨
4年前
VS Code 中 11 个快捷键/操作,让你的效率与舒适度翻倍!
F12跳转引用使用F12实现跳转如上图:•F12 跳转到变量、函数、类的定义处•ShiftF12 跳转到其引用处;多个引用时,可以选择具体哪个re
Stella981 Stella981
3年前
Python 学生管理
原文链接: Python学生管理(https://my.oschina.net/ahaoboy/blog/1526102)python3练手 codingutf8学生类classStu:三个字段id字符串,name字符串,score小数def__init__(sel
Wesley13 Wesley13
3年前
Java使用xsd校验xml
最近项目需要使用xsd对xml进行预校验,于是封装了一个工具类,来完成校验工作。完整代码如下:importjava.io.File;importjava.io.IOException;importjava.io.StringReader;importjava.util.ArrayList;im
Easter79 Easter79
3年前
SpringBoot整合Redis乱码原因及解决方案
问题描述:springboot使用springdataredis存储数据时乱码rediskey/value出现\\xAC\\xED\\x00\\x05t\\x00\\x05问题分析:查看RedisTemplate类!(https://oscimg.oschina.net/oscnet/0a85565fa
Stella981 Stella981
3年前
12306 selenium 模拟登录
\下面是12306实现的模拟登陆\解码应用超级鹰,注册用户,左侧栏软件ID进去,开启一个新软件,拿到软件ID\下面测试都在jupyter里面实现超级鹰类cellimportrequestsfromhashlibimportmd5classChaojiying_Cli
Wesley13 Wesley13
3年前
mysql与oracle区别
编号ORACLEMYSQL注释1NUMBERint/DECIMALDECIMAL就是NUMBER(10,2)这样的结构INT就是是NUMBER(10),表示整型;MYSQL有很多类int型,tinyintmediumintbigint等,不同的int宽度不一样2Varchar2
Easter79 Easter79
3年前
SpringBoot定时任务xml配置
    由于定时任务需要工程实施人员进行配置,写在Java代码里面不利于维护,故采用SpringBoot集成SpringXML文件进行配置,属于新瓶装旧酒。1新建定时任务类packagecom.duhongming.springbootscheduled.scheduled;importlomb
Stella981 Stella981
3年前
SpringBoot定时任务xml配置
    由于定时任务需要工程实施人员进行配置,写在Java代码里面不利于维护,故采用SpringBoot集成SpringXML文件进行配置,属于新瓶装旧酒。1新建定时任务类packagecom.duhongming.springbootscheduled.scheduled;importlomb
Easter79 Easter79
3年前
SpringMvc的传递参数方式
1\.@requestMapping:类级别和方法级别的注解,指明前后台解析的路径。 有value属性(一个参数时默认)指定url路径解析,method属性指定提交方式(默认为get提交) @RequestMapping(value "/testing")public class QuestionSe