- 浏览: 109083 次
- 性别:
- 来自: 山旮瘩
最新评论
-
meng0912:
...
左手程序右手诗 -
dearplain:
没声明var的变量并不是全局变量,当一个变量没声明var的时候 ...
JS全局变量 -
breakerror:
MySQL的ROWNUM -
wyyl00:
gmtstu 写道 还带这么理解的 我比较菜,不太会啊。愿闻您 ...
JS全局变量 -
gmtstu:
还带这么理解的
JS全局变量
文章列表
Invocation of init method failed; nested exception is org.hibernate.HibernateException: unkn
own Oracle major version [11]
数据库为oracle 11g,搜到网上说要配置方言为10g,但是仍然未解决
我的方言配置是使用properties文件配置的,
类似如下:
<property name="hibernate.dialect">${urn:jdbc-dialect}</property>
尝试直接在xml ...
Configuration config = new Configuration().configure();
SchemaExport se = new SchemaExport(config);
se.setOutputFile("E:\\sql.txt");//保存建表语句
se.create(true, false);//第一个参数为是否显示建表语句,第二个为是否在创建表之前删除同名表
当然,得先配置好hibernate.cfg.xml以及相应的POJO和**.hbm..xml文件。
XML—AOP配置
<!--业务bean-->
<bean id="personService" class="com.aop.service.PersonServiceBean"></bean>
<!--拦截器bean-->
<bean id="myInterceptor" class="com.aop.interceptor.MyInterceptor2"></bean>
&l ...
Spring事务管理对两种异常的处理
uncheck 未捕获异常 即RuntimeException,进行事务回滚
对checked异常,认为程序必须处理,则发生时不进行回滚,但是可以通过rollbackFor和noRollbackFor来灵活配置。
事务的传播行为:
1.PROPAGATION_MANDATORY 方法必须在一个现存的事务中进行,否则丢出异常。
@Transactional(propagation=Propagation.MANDATORY)
public void delete(int id) throws Exception{
jdb ...
解惑 spring 嵌套事务
/** * @author 王政 * @date 2006-11-24 * @note 转载自http://www.iteye.com/topic/35907?page=1*/
********TransactionDefinition 接口定义*******************/** * Support a current transaction, create a new one if none exists. * Analogous to EJB transaction attribute of the same ...
public static void main(String[] args) { // TODO Auto-generated method stub ApplicationContext cx = new FileSystemXmlApplicationContext("/src/applicationContext.xml"); CompanyDao company = (CompanyDao) cx.getBean("company"); company.insert("123"); } 仔细看下以上加粗地方,是不是采用配置的接口 ...
关键字: flex中trace()调试时flash player版本问题
Flex中trace()调试时flash player版本问题关键字: flex, trace(), flash player Flex builder 3.0中使用trace( )调试时(debug方式运行,也可直接按F11运行。如果不是debug方式运行,trace函数的内容是不会输出的),弹出提示:
Installed Flash Player Is Not a Debugger
C:\Windows\System32\Macromed\Flash\Flash10a.ocx Flex Builder ...
将半角转换成全角
function SBC(text) {
return text.replace(/[\x20-\x7e]/g, function($0) {
return $0 == " " ? "\u3000" : String.fromCharCode($0.charCodeAt(0) + 0xfee0);
});
}
function n2c(n) {
var s= n.toString().split(''),
r='';
for (var ...
写字楼里写字间 写字间中程序员 程序人员写程序 又将程序换酒钱 酒醒只在屏前坐 酒醉还来屏下眠 酒醉酒醒日复日 屏前屏下年复年 但愿老死电脑间 不愿鞠躬老板前 奔驰宝马贵者趣 公交自行程序员 别人笑我太疯癫 我笑自己命太贱 但见满街漂亮妹 哪个归得程序员
package com.soft.export;
import java.io.File;
import jxl.CellType;
import jxl.Workbook;
import jxl.biff.DisplayFormat;
import jxl.format.Alignment;
import jxl.format.Border;
import jxl.format.BorderLineStyle;
import jxl.format.Colour;
import jxl.format.VerticalAlignment;
import jxl.write. ...
搜出该用户的session的SID,SERIAL码,然后kill掉select sid,serial# from v$session where username='user_name';
alter system kill session 'sid,serial'; alter system kill session '527,2832';
删除用户
drop user user_name cascade;
删除表空间
drop tablespace tab_name including contents and datafiles 当前表空间大小select * fro ...
今天服务器端报错,出现一个ILjava/lang/String;,不知道是什么类型,后来写了个测试,应该是int型和一个String类型
测试调用方法原型为
public void provider(String a,int b,String c)
Exception in thread "main" java.lang.NoSuchMethodError: test.method.notfound.TestProvider.provider(Ljava/lang/String;ILjava/lang/String;)V at test.method ...
下面来说说具体如何操作。以我的电脑为例给大家做个演示。 我自己呢也有两个网卡,一个是办公内网,一个是外网。
连接内网的网卡,ip设置为:192.168.1.111,网关设置为192.168.1.1
连接外网的网卡,ip设置为:192.168.0.111,网关设置为192.168.0.1
我在命令行下,用route print命令查看一下当前默认的路由表:
最下面一行:Default Gateway:192.168.1.1 这句的意思就是默认网关,一台电脑只有一个默认网关,所有的数据包都是先发往这个网关地址。
根据显示,192.168.1.1代表我的内网,也就是所有的数据包都会自动优 ...
--记录,类似于对象(先定义一个记录,然后定义一个该记录类型的引用)
--普通定义方式
DECLARE
TYPE Student IS RECORD(
sid number,
sname varchar(20),
sclass varchar(10)
);
stu Student;
BEGIN
SELECT sno,sname,sclass INTO stu FROM student WHERE sno=1001;
DBMS_OUTPUT. ...
--异常处理 --系统异常 --该过程从student表中搜索出某一编号的学生姓名,然后将姓名存储到变量x中, --如果结果集返回为空,则出现异常,NO_DATA_FOUND为系统预定义异常
DECLARE
x varchar(20);
BEGIN
SELECT sname INTO x FROM student WHERE sno=1009;
DBMS_OUTPUT.PUT_LINE(x);
EXCEPTION
WHEN NO_DATA_FOUND THEN
DBMS_OUTPUT.PUT_LINE('搜索无 ...