- 博客(20)
- 资源 (23)
- 收藏
- 关注
原创 2020年12月统考练习题
词汇与语法B1、He opened the letter and it contained ________.A.an important informationB.some important informationsC.many important informationD.some important information答案:D2、He has been writing for 3 years, but being a writer is not his ________.A.ch
2020-12-08 17:04:42
171605
原创 Eclipse安装ModelGoon控件(最新)
研究了很多关于eclipse安装modelGoon空间的帖子,发现很多都不好使了,索性自己研究一下,发现modelGoon已经被eclipse同化了,在https://marketplace.eclipse.org/content/modelgoon-uml4java可以找到安装信息,1. 打开eclipse,2. 选择Help ---》 Eclipse MarketPlace......
2020-02-24 02:15:06
1741
原创 统考练习题词汇与语法B
1、Measles(麻疹) ________ a long time to get over.A.spendB.spendsC.takeD.takes答案:D2、The boy is not happy at the new school. He has ________ friends there.A.fewB.a fewC.littleD.a littl...
2019-12-14 11:13:07
7107
原创 大学英语B----英译汉
一、英译汉1、Li Mei studies in a university far away from her home.参考答案:李梅在远离自己家的一所大学学习。解析:far away from远离。2、Many people don’t listen to music and they can get along quite well.参考答案:许多人不听音乐,却生活...
2019-11-03 21:10:11
19430
1
原创 大学英语B---完形填空
一、完型填空How much do you know about manners? Different countries have different manners. In some Asian countries, it is good manners to take off your ___21___ before you go into a house. But in Europ...
2019-11-03 21:06:36
5467
原创 大学英语B---词汇与语法
一、词汇与语法1、The manager promised to keep me ____ of how our business was going on.A、to be informedB、on informingC、informedD、informing参考答案:C解析:句意:经理承诺让我了解公司的经营情况。固定搭配:Inform sb. of 。在本句中,informed...
2019-11-03 20:47:14
17921
原创 大学英语B---阅读理解
一、阅读理解In the same way that a child must be able to move his arms and legs before he can learn to walk, the child must physiologically be capable of producing and experiencing particular emotions b...
2019-11-03 20:31:44
11031
原创 大学英语B --交际英语
一、交际英语1、- Hey, Tom, what's up?- __________A、Yes, definitely!B、Oh, not much.C、What is happening in your life?D、You are lucky.参考答案:B解析:【答案】B【解析】社交性寒暄。What's new?/ What's up?“你在忙些什么?”回答是Not much...
2019-11-03 17:36:22
10610
转载 基于注解的spring mvc
终于来到了基于注解的 Spring MVC 了。之前我们所讲到的 handler,需要根据 url 并通过 HandlerMapping 来映射出相应的 handler 并调用相应的方法以响应请求。实际上,ControllerClassNameHandlerMapping, MultiActionController 和选择恰当的 methodNameResolver(如 InternalPath
2015-05-15 19:53:47
1167
转载 Linux下apache日志分析与状态查看方法
假设apache日志格式为:118.78.199.98 – - [09/Jan/2010:00:59:59 +0800] “GET /Public/Css/index.css HTTP/1.1″ 304 – “http://www.a.cn/common/index.php” “Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GT
2014-01-21 10:35:03
737
原创 jumpstart-6.10.3安装指南
最近在学习tapestry,我个人比较喜欢看官方的demo,在网上看了看tapestry的资料比较少,自己就摸索着开始学习使用jumpstart,另外在飞风娱乐也学习了不少tapestry的知识,大家可以去参考参考。切入正题,开始配置jumpstart-6.10.3。1. 去http://jumpstart.doublenegative.com.au/download.html下载Tapest
2013-11-21 12:00:12
1886
转载 hql中使用left join说明
inner join(内连接)left outer join(左外连接)right outer join(右外连接)full join (全连接,并不常用)HQL中的条件用with即:left join ... with...?SQL中的条件用on即:left join ... on...?语句inner join, left outer join
2013-11-20 15:08:42
9635
原创 vsftpd 安装
1、查看是否已经安装vsftpd#rpm -qa|grep vsftp[root@localhost asd]# rpm -qa|grep vsftpvsftpd-2.0.5-16.el5_4.1说明已经安装,否则需进行安装vsftpd-2.0.5-16.el5_4.1.i386.rpm vsftpd-2.0.5-16.el5_4.1.i386.rpm附件在我的资源里面。2
2013-10-28 15:24:36
931
原创 oracle和DB2递归的例子
原始表:CREATE TABLE departments (deptid INT, deptname VARCHAR(20), empcount INT, superdept INT)查询某个部门的所有子部门的总人数--------------------------------------------------------------
2010-02-10 09:59:00
565
原创 jsp数据库连接大全
一、jsp连接Oracle8/8i/9i数据库(用thin模式) String result = ""; // 查询结果字符串 String sql = "select * from test"; // SQL 字符串 // 连接字符串,格式: "jdbc:数据库驱动名称:连接模式:@数据库服务器ip:端口号:数据库SID" String url = "jdbc:
2009-11-18 16:39:00
644
原创 彻底明白Java的IO系统
一. Input和Output1. stream代表的是任何有能力产出数据的数据源,或是任何有能力接收数据的接收源。在Java的IO中,所有的stream(包括Input和Out stream)都包括两种类型:1.1 以字节为导向的stream以字节为导向的stream,表示以字节为单位从stream中读取或往stream中写入信息。以字节为导向的stream包括下面几种类型:
2009-11-18 16:38:00
478
转载 Tomcat5的数据库连接池配置
本文主要介绍Tomcat5.0.25这个版本下数据库连接池的配置,及程序对连接池的JNDI查找,并提供相应测试代码。最后指出配置及应用过程中的常见问题及解决方法。1 .该文的配置环境:Tomcat5.0.25 + jdk1.4+ Sql Server 2000+Win20002.配置步骤:第一步:启动Tomcat,打开IE在地址栏内输入http://localhost:8080/
2009-11-18 16:35:00
487
原创 关于DAO中add方法异常抛出的说明
对于DAO中add方法抛出ObjectAlreadyExistException异常的处理办法:1、如果是因为主键冲突而需要抛出ObjectAlreadyExistException就直接执行executeUpdate方法,然后在catch(SQLException e)中根据e.getErrorCode()的返回值判断是否要抛出ObjectAlreadyExistException,此
2009-11-18 16:34:00
1310
原创 struts1 分页
一般在list页面才要分页 1)所以加入一个参数来判断是否分页,如pageControll=true(当然可以不用,这步) 2)建一个转用的actionform(当然页可以是普通bean,我这里只是为了页面上少写scriplet) --网上找了个改造成自己想 要的 --PageController.java(见附) 3)在处理list的action代码里加入
2009-11-18 16:30:00
1640
1
ModelGoon-4.4.1.zip
2020-02-24
tapestry-src-5.1.0.5.zip
2013-11-07
tapestry4和5学习资料
2013-11-07
hibernate-jpa-2.0-api-1.0.1.Final-sources.jar
2013-10-08
hibernate-core-4.2.0.Final-sources.jar
2013-10-08
Myeclipse+2013-ea4+破解文件%2B破解说明
2013-09-26
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人