NoSQL介绍 NoSQL数据库简介 技术发展 1、解决功能性问题:Java、Jsp、RDBMS、Tomcat、html、Linux、JDBC、SVN 2、解决扩展性功能:Struts、Spring、SpringMVC、Hibernate、Mybatis 3、解决性能的问题:NoSQL、Java线程 ...
分类:
系统相关 时间:
2021-05-24 02:14:01
阅读次数:
0
原文:http://www.ttlsa.com/mysql/mysql-utilities-mysqlfrm/ mysqlfrm 是一个恢复性质的工具,用来读取.frm文件并从该文件中找到表定义数据生成CREATE语句。在大多数情况下,生成的CREATE语句用于在另一个服务器上创建表或进行诊断等。然 ...
分类:
数据库 时间:
2021-05-24 01:05:54
阅读次数:
0
http://tool.chinaz.com/dns/?type=1&host=www.githubs.cn&ip= 输入网站网址,找到ttl值最小的,复制ip 找到C:\Windows\System32\drivers\etc文件夹下的hosts文件用记事本打开,在最后输入 #github (ip ...
分类:
Web程序 时间:
2021-05-24 00:56:07
阅读次数:
0
If you are new to YAML, here is a useful link to a blog on YAML. YAML tutorial Here is a free tool that was mentioned in the video that can convert YA ...
分类:
其他好文 时间:
2021-05-04 16:11:49
阅读次数:
0
https://www.serverless.com/learn/comparisons/ Docker Docker packages software into standardized units (containers) to make it easier to manage applica ...
分类:
其他好文 时间:
2021-05-03 11:49:54
阅读次数:
0
Mybatis入门 MyBatis和Hibernate一样,是一个优秀的持久层框架。已经说过很多次了,原生的jdbc操作存在大量的重复性代码(如注册驱动,创建连接,创建statement,结果集检测等)。框架的作用就是把这些繁琐的代码封装,这样可以让程序员专注于sql语句本身。 MyBatis通过X ...
分类:
其他好文 时间:
2021-04-29 11:51:02
阅读次数:
0
开发工具下载地址 https://q.qq.com/wiki/tools/devtool/#开发者工具下载 开发阅读文档 https://q.qq.com/wiki/develop/miniprogram/frame/ ...
分类:
微信 时间:
2021-04-29 11:47:56
阅读次数:
0
def reverse_str(s): from functools import reduce res = s[::-1] # 切片 res = "".join(list(reversed(s))) # 反转函数 res = reduce(lambda x,y:y+x, s) # reduce p ...
分类:
其他好文 时间:
2021-04-28 12:06:36
阅读次数:
0
1、注解的本质 在注解使用之前,Java各大框架(Spring,Hibernate等)使用xml来实现其松耦合方式的配置。但是随着项目越来越多,xml内容越来越复杂,维护成本越累越高。因此,业界提出采用一种标记式的高耦合配置方式,叫做注解。开发者可以在方法、类、字段属性等需要配置的地方进行注解。 关 ...
分类:
编程语言 时间:
2021-04-26 13:48:19
阅读次数:
0
Spring Boot 下使用JPA,报org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set错误,异常信息如下: Caused ...
分类:
编程语言 时间:
2021-04-23 12:28:00
阅读次数:
0