1. java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) w ...
分类:
编程语言 时间:
2018-12-05 20:52:46
阅读次数:
135
比较运算 > < = != <> <= >= 逻辑运算 and or not 范围查询 in 模糊查询 like select distinct age from classes; 将classes表格里age去重 select * from classes where id <= 3; 打印cla ...
分类:
数据库 时间:
2018-12-05 20:49:16
阅读次数:
215
自关联操作 select student.id,student.name,classes.name from student inner join classes on student.cls_id = classes.id; inner join内连 left join左连 right join右 ...
分类:
数据库 时间:
2018-12-05 20:29:15
阅读次数:
242
Using just semantic CSS Pseudo-Classes you can help define important states for form elements that ensure the user provides the correct data without f ...
分类:
Web程序 时间:
2018-12-05 01:56:49
阅读次数:
232
The interactive pseudo-classes for links (and buttons) allow us to make sure the user knows what elements on the page are interactive and that they ca ...
分类:
Web程序 时间:
2018-12-05 00:21:22
阅读次数:
244
war模式:将WEB工程一包的形式上传到服务器中。 war exploded模式:将WEB工程以当前文件夹的位置关系上传到服务器。 解析: war 模式这种可以称为是发布模式(完整的项目),将项目打成war包,再发布。 war exploded模式是直接把文件夹、jsp页面、classes等等移到T ...
分类:
其他好文 时间:
2018-12-04 17:09:47
阅读次数:
219
Python基础之类与面向对象 类的初始化: 类的属性引用与实例化 类的属性:定义一个Student类,属性为name,sex,classes 类的方法:本质是类中的函数,可以通过类名.方法名调用。 类的实例化过程:类名()的过程就是实例化,会自动触发__init__函数的运行,可以用他来实例定制每 ...
分类:
编程语言 时间:
2018-12-02 12:28:42
阅读次数:
146
参加工作了就很少有时间去玩delphi了,这个适合初学者看看,大神勿喷 工具 delhpi7.0 access数据库 原则win下有安装office就可用 当初不太熟悉sqlite所有没用这做数据库。 ...
from django.db import models # Create your models here. class Classes(models.Model): ''' 班级表 ''' title=models.CharField(max_length=32) m=models.ManyTo... ...
分类:
其他好文 时间:
2018-12-01 11:10:55
阅读次数:
205
-- 查询所有字段 -- select * from 表名; select * from students; select * from classes; select id, name from classes; -- 查询指定字段 -- select 列1,列2,... from 表名; sel ...
分类:
其他好文 时间:
2018-11-29 15:18:38
阅读次数:
217