1、最主要的代码 Spring 配置文件(beans.xml) 1 <!-- 连接池 --> 2 <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> 3 <!-- 注册驱动 --> 4 <property ...
分类:
数据库 时间:
2019-11-09 21:36:41
阅读次数:
116
“r”:以只读的方式打开,调用该对象的任何write(写)方法都会导致IOException异常“rw”:以读、写方式打开,支持文件的读取或写入。若文件不存在,则创建之。“rws”:以读、写方式打开,与“rw”不同的是,还要对文件内容的每次更新都同步更新到潜在的存储设备中去。这里的“s”表示sync ...
分类:
数据库 时间:
2019-11-09 21:22:19
阅读次数:
88
# ### property 把方法变成属性:用来控制成员的 获取 , 设置 , 删除@property 获取@方法名.setter 设置property@方法名.deleter 删除 # 写法一class MyClass(): def __init__(self,name): self.name ...
分类:
其他好文 时间:
2019-11-09 17:36:40
阅读次数:
63
一、css 全称Cascading Style Sheets,层叠样式表,具体的作用是美化页面,让页面中显得更加美观。 1、使用方式 在HTML页面中有三个地方可以使用,分别是标签内,头部标签中以及在HTML中声明,然后用src连接外部,注意在使用的时候三种方法可以同时使用,遵循就近原则,受那个近就 ...
分类:
编程语言 时间:
2019-11-09 09:21:42
阅读次数:
66
在帮助中搜索qt style sheets 找到这句话: If we want the property to apply only to one specific QLineEdit, we can give it a name using QObject::setObjectName() and ...
分类:
其他好文 时间:
2019-11-08 13:57:00
阅读次数:
153
测试页面的时候发现一个很奇怪的问题,页面在谷歌,ie跑都没有问题,可是在edge浏览器却出现一个很奇怪的错误。详细的错误信息如下: [Vue warn]: Property or method "*this*" is not defined on the instance but reference ...
分类:
其他好文 时间:
2019-11-08 12:38:01
阅读次数:
85
SQL>CREATE BIGFILE TABLESPACE 表名datafile 'd:\ndo\ddo\表名.DBF‘SIZE 500M AUTOEXTEND ON; SQL>Create Bigfile tablespace bf_images_xpdatafile 'e:\datacenter ...
分类:
数据库 时间:
2019-11-08 10:46:33
阅读次数:
110
前端杂谈: Attribute VS Property 第一个问题: 什么是 attribute & 什么是 property ? attribute 是我们在 html 代码中经常看到的键值对, 例如: <input id="the-input" type="text" value="Name:" ...
分类:
其他好文 时间:
2019-11-07 19:07:23
阅读次数:
98
mybatisConfig.xml <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/ ...
分类:
其他好文 时间:
2019-11-07 16:27:14
阅读次数:
112
视图解析器 在spring-mvc文件中编写 <!--配置视图解析器--> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value=" ...
分类:
其他好文 时间:
2019-11-07 15:03:56
阅读次数:
89