上一页 1 2 3 4 5 6 7 8 9 ··· 33 下一页
摘要: 【问题描述】下述Makefile中:all: gcc -Wall -g -DDARRAY_TEST darray.c -o darray_test gcc -Wall -g -DDLIST_TEST dlist.c -o dlist_test gcc -Wall -g -shared darray.c dlist.c linear_container_darray.c linear_container_dlist.c -o libcontainer.so gcc -Wall -g linear_container_test.c -L./ -lcontainer -o container_t.. 阅读全文
posted @ 2012-05-02 10:30 j2ee技术 阅读(223) 评论(0) 推荐(0) 编辑
摘要: Service 端:(注:org.springframework.web.servlet.DispatcherServlet)配置文件中.xml <!-- RMI --> <bean id="accountServiceImpl" class="com.spring.service.impl.AccountServiceImpl" /> <bean class="org.springframework.remoting.rmi.RmiServiceExporter"> <property na 阅读全文
posted @ 2012-05-01 18:52 j2ee技术 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 先看applicationContext.xml下面的beans<!-- Trigger --> <bean id="autoJob" class="com.spring.app.AutoJob" /> <bean id="autoTask" class="com.spring.app.AutoTask" /> <bean name="autoWeekly" class="org.springframework.scheduling.quart 阅读全文
posted @ 2012-05-01 18:43 j2ee技术 阅读(1083) 评论(0) 推荐(0) 编辑
摘要: 错误如下:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping#0' defined in ServletContext resource [/WEB-INF/spring-servlet.xml]: Initialization of bean failed; nested exception is 阅读全文
posted @ 2012-04-30 20:57 j2ee技术 阅读(538) 评论(0) 推荐(0) 编辑
摘要: spring.xml<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:jee="h 阅读全文
posted @ 2012-04-28 17:35 j2ee技术 阅读(483) 评论(0) 推荐(0) 编辑
摘要: 悲观锁:认为在修改数据库数据的这段时间里存在着也想修改此数据的事务!乐观锁:认为在短暂的时间里不会有事务来修改此数据库的数据!悲观锁:基于jdbc实现的数据库加锁如下:select * from account where name="Erica" for update.在更新的过程中,数据库处于加锁状态,任何其他的针对本条数据的操作都将被延迟。本次事务提交后解锁。hibernate悲观锁的具体实现如下:String sql="查询语句";Query query=session.createQuery(sql);query.setLockMode(&qu 阅读全文
posted @ 2012-04-27 20:08 j2ee技术 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 采用声明式事务1、了解事务的传播特性1、propagation_required:如果当前存在一个事务,则支持当前事务,如果没有事务则开启事务2、propagation_supports:如果存在一个事务,则支持当前事务,如果没有事务则非事务执行3、propagation_mandatory:如果存在一个事务,则支持当前事务,如果没有事务则抛出异常4、propagation_requires_new:总是开启新事务,如果当前存在一个事务,则把当前事务挂起5、propagation_not_supported:总是非事务执行,总是挂起当前存在的事务6、propagation_never:总是非事 阅读全文
posted @ 2012-04-27 19:38 j2ee技术 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 代码暂时不贴:说一下我的结构在tabPanel中放gridpanel,我的列有60列,但是滚动条不能拖动到最边上,有两列不能显示出来原因是我设置了tabpanel的宽度,超过了页面的宽度Ext.getBody.getWidth(),不设置就好了.就不会出现这样的问题. 阅读全文
posted @ 2012-04-27 14:27 j2ee技术 阅读(299) 评论(0) 推荐(0) 编辑
摘要: java.lang.ClassNotFoundException: com.mysql.jdbc.driver这是没有细心爱出错的原因,一、驱动:com.mysql.jdbc.Driver二、url:jdbc:mysql://210.30.12.3:3306/myDB三、username/password四、加入的驱动包:mysql-connector-java-3.1.13-bin.jar五、jar包要放在classpath/lib下面 阅读全文
posted @ 2012-04-26 15:07 j2ee技术 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 在beans.xml中加入两个必须的bean <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location" value="/WEB-INF/jdbc.properties" /> </bean> <bean id="dataSource" clas 阅读全文
posted @ 2012-04-26 15:03 j2ee技术 阅读(446) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 33 下一页