自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(106)
  • 收藏
  • 关注

原创 闽科-软件基地-移动开发基地指导记录

学习原则:从基础到高级、 从简单到复杂(例如 基础功能模块设计到复杂模块设计)、集中精力和时间,学习web方向内的技术,其中包括:前端 基于html5的UI设计后端 基于java的servlet 开发  和 后期的 ssh、ssm3大框架开发。 JAVA 类的分析与设计,java HTTP 网络编程 mysql的安装和操作。1. 认识html5 和 相关开发工具  Dreamweare CS   ...

2018-04-08 08:15:37 811

转载 计算机软考——高级——信息系统项目管理师考试 信息汇总

2018年信息系统项目管理师考试指定教程和教材、备考资料推荐《2005-2017年历年真题汇总》:该资料由信管网编辑整理,同时免费提供给各位考友下载,包含了2005年到2017年的所有历次考试真题(包含上午综合知识、下午案例分析和论文题),并且大部分试题都包含有解析。真题的重要性不言而喻,该资料是所有备考信息系统项目管理师考试的考生必备的资料《信息系统项目管理师2009至2016年试题分析与解答》...

2018-03-28 14:13:20 980

原创 临时的实验课记录+研究的代码+计算机文档目录管理

http://yananay.iteye.com/blog/2220729  2017-12-6 教师ftp地址, 打开“计算机”,输入地址 ftp:/10.10.2.10 ,即可登录。http://blog.csdn.net/lifetragedy/article/details/7698555 ftp://10.10.8.10http://www.cnblogs

2018-01-11 14:59:32 6239

原创 大学毕业论文指导-内容陈述

http://www.cnki.net/software/xzydq.htm   软件下载大家参考一下下载论文到中国知网 中国知网右上角 下载  文件阅读器软件: CAJViewer  我现在 是让你们自己选喜欢的主题 ,如果  到了1号 你还没有定好主题 那就  我给你指定  论文主题 不管你喜不喜欢,都要 做  我给你的论文主题 现在是给你 

2017-12-07 09:40:33 1775 1

原创 javascript + CSS + JQuery

==========================================================CSS的基本语法:选择符{ 样式属性: 取值 ; 样式属性: 取值;。。。。。。。}选择符可以是: body h1 id class等标签值例如:#lay 表示 选择 添加CSS的4种方法:1. 链接外部样式表:是在网页中调用已经定义好的样式表来实

2017-12-04 14:08:11 414

原创 学生提问问题-汇总

学生提问的问题:============================================设教学数据库有三个关系:学生关系S(SNO  SNAME  AGE  SEX  SDEPT)求基本表S中男同学的每一年龄组(超过50人)有多少人?要求查询结果按人数升序排列,人数相同按年龄降序排列。该题的测试代码如下:create table student

2017-11-16 16:24:50 758

转载 Fiddler

http://www.cnblogs.com/anny-1980/p/4537922.htmlhttp://www.cnblogs.com/chongyou/articles/4878682.html

2017-09-21 12:16:46 416

转载 java 反编译 知识学习汇总 java网络爬取网页代码

http://blog.csdn.net/qq_26891045/article/details/52517585http://blog.csdn.net/dongnan591172113/article/details/51832628http://www.360doc.com/content/14/0328/03/13017437_364313510.shtmlhttp:/

2017-09-21 07:35:35 2375

原创 算法 八皇后 表达式求值-栈

=======================可以测试的。java代码:package queen;public class Queen    //八皇后问题:  枚举算法代码,  还有好的代码{    // int a[]={0,0,0,0,0,0,0,0,0};        public static int check(int a[], int n){

2017-07-01 19:21:11 581

原创 java 线程综合学习代码

package thread;public class InterruptTest extends Thread { static int result =0 ; public InterruptTest(String name ){ super(name);} public static void main(String[] args) {  System.out.p

2017-05-17 21:38:26 521

转载 apache mod_proxy 负载均衡

http://koda.iteye.com/blog/465061 http://www.cnblogs.com/xing901022/archive/2013/04/09/3248870.html http://blog.csdn.net/oleichang/article/details/46930855 http://blog.sina.com.cn/s/blog_4

2017-05-06 15:54:00 728

转载 servlet context cache 综合

http://www.open-open.com/lib/view/open1382318768355.html public class ContextLoaderListener implements ServletContextListener{ //实现全局上下文初始化方法 @Override    public void contextInitiali

2017-04-30 09:59:33 550

原创 apache 和 一个 tomcat 集成 测试成功 案例 代码

apache   /conf/httpd.conf ## This is the main Apache HTTP server configuration file.  It contains the# configuration directives that give the server its instructions.# See URL:http://httpd.a

2017-04-19 19:39:13 1200

转载 apache tomcat 集群整合测试 3

https://item.jd.com/10976152.html  书 http://www.blogjava.net/bukebushuo/archive/2010/07/02/325037.html http://www.open-open.com/lib/view/open1404644133495.htmlhttp://www.cnblogs.com/milton/p

2017-04-14 14:09:58 869

转载 android 系统开发资料汇总 2 高性能web服务 tomcat 集群 apache

http://zeusami.iteye.com/blog/1172864 http://www.cnblogs.com/winkey4986/p/5478332.htmlhttp://zheyiw.iteye.com/blog/1571222http://blog.csdn.net/jaikydota163/article/details/51458880http://www

2017-03-24 14:32:08 1008

转载 android 系统开发资料汇总

http://bbs.csdn.net/forums/Android    CSDN  安卓论坛 http://www.3g-edu.org/courses/content.htm   安卓学习路线http://xm.tedu.cn/baidu/android/?XMJAVAqzs+xmjava20160302215243565&utm_term=android%E5%BC%80%

2017-03-15 22:16:20 1090

转载 Java 迭代 apriori算法

http://download.csdn.net/detail/huangyongjie986123/3976324 http://blog.csdn.net/wangyunyun00/article/details/38273213 http://blog.sina.com.cn/s/blog_6efce07e0101309a.html https://zhidao.ba

2017-03-05 19:47:43 671

转载 vmware 虚拟机 知识汇总

参考文献:http://www.cnblogs.com/sddai/p/6014403.htmlhttp://www.server110.com/vmware/201404/9445.htmlhttps://zhidao.baidu.com/question/262209302.htmlhttp://www.cnblogs.com/aguai1992/p/4807837.html

2017-02-24 21:17:45 2300

转载 java 算法 单链表 栈 树 图

package package1;public interface LList {  /**     * 判断线性表是否空     * @return     */    boolean isEmpty();        /**     * 返回线性表长度     * @return     */    int length();

2017-02-05 10:16:49 779

转载 eclipse UML 学习 Rose

转载他人的文章,合作共赢! 谢谢!http://www.cnblogs.com/duanxz/p/3769610.html

2017-02-01 21:49:02 670

转载 mysql 索引 + Linux+ web服务器

http://www.111cn.net/database/mysql/53682.htmhttp://blog.csdn.net/xluren/article/details/32746183

2017-01-24 11:46:09 869

原创 mysql 数据操作命令汇总 hibernate操作

转载其他人的文章,谢谢合作:http://www.jb51.net/article/59623.htmhttp://www.yiibai.com/mysql/mysql_like_clause.htmlhttp://blog.163.com/budong_weimin_zh/blog/static/12919852420115130484204/  ============

2017-01-21 08:37:31 506

原创 java 网络编程

package com;import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStreamReader;i

2017-01-18 14:36:40 484

原创 java 代码 规范 快捷键

使用匈牙利表示法 Package 的命名 Package 的名字应该都是由一个小写单词组成。package com.neu.util  Class 的命名 Class 的名字必须由大写字母开头而其他字母都小写的单词组成,对于所有标识符,其中包含的所有单词都应紧靠在一起,而且大写中间单词的首字母。public class ThisAClassName{

2017-01-17 20:59:14 5239

原创 java 常见的文件字符处理操作 进程与线程

测试代码: package com;import java.io.File;import java.io.IOException;public class fileDemo {  public static void main(String[] args) throws IOException {    File f= new File("C:\\Users\\

2017-01-17 10:16:46 579

转载 findbugs

下载安装从sourceforge网站可以下载到最新的版本,下载地址:http://sourceforge.net/projects/findbugs/files/findbugs%20eclipse%20plugin/               FindBugs1.3.9规则整理 Findbugs中把影响代码质量分为

2017-01-17 08:14:29 2719

转载 java 缓存

http://www.cnblogs.com/duyinqiang/p/5696759.html http://blog.csdn.net/suifeng0117/article/details/5413039  http://www.cnblogs.com/doit8791/p/4251490.html  http://www.cnblogs.com/likeju

2017-01-15 16:41:12 369

转载 JMX

http://blog.csdn.net/qi8660306/article/details/46503401  转载自qi8660306

2017-01-15 16:33:46 367

转载 tomcat 7

http://blog.csdn.net/c929833623lvcha/article/details/44677569    转载自c929833623lvcha

2017-01-15 15:57:28 421

转载 maven 汇总

http://blog.csdn.net/qjyong/article/details/9098213 http://www.cnblogs.com/oucbl/p/5928511.htmlhttp://www.shaoqun.com/a/100214.aspx转载自博文作者:迦壹博客标题:win8.1_64bit+eclipse4.4+maven3.2.3+JDK1.

2017-01-15 14:48:11 381

转载 SSH 技术—— 分页 、图片集合显示出来代码

http://www.blogjava.net/BlogJava522935502/archive/2012/01/04/354039.html        ——转载他人的资料,合作共享

2016-12-23 19:15:14 652

转载 structs2 项目开发总结

转载他人的文章:只为传播知识,谢谢合作!http://blog.sina.com.cn/s/blog_6cbe0cff0101j6jl.html                          request.getContextPath() http://www.cnblogs.com/yqskj/articles/2226401.html   管理员:

2016-12-17 18:07:27 851

转载 Java集合 他人的总结 和 我的学习

http://blog.csdn.net/zsm653983/article/details/7562324 http://blog.csdn.net/pistolove/article/details/41453705

2016-12-08 17:31:40 403

转载 Java常用的设计模式 他人的总结。

http://blog.sina.com.cn/s/blog_155bb57fe0102w9z7.html  http://www.cnblogs.com/yexiaochai/p/4292830.html http://blog.csdn.net/zengraoli/article/details/11522439

2016-12-08 17:30:14 501

原创 Java spring 综合 maven综合-2

补前面的案例  springMVC CHUNJINGBAN:

2016-12-04 09:42:57 339

转载 Java spring 综合 maven综合-1

确定最新的eclipse的版本  ,下载与之对应的 spring插件http://spring.io/tools/sts/all  我在线安装了 下载spring框架软件:http://repo.spring.io/release/org/springframework/spring/解压后 得到所需的包:   和日志jar包    http://commons.apach

2016-11-25 15:38:44 951

原创 平时资料综合汇总 eclipse开发代码辅助工具 普陀山

软件下载网址:http://www.xdowns.com/soft/188/215/2010/Soft_61286.html   ===========================================================

2016-11-24 12:29:56 862

转载 Java ant 他人文章汇总

http://blog.csdn.net/achang21/article/details/45062537   http://blog.csdn.net/linchaolong/article/details/45057167   http://blog.sina.com.cn/s/blog_62ef85c201016e2n.html   http

2016-11-19 21:49:09 559

原创 junit 学习

参考文档:转载他人的http://dongbiying.iteye.com/blog/1002188 http://tonl.iteye.com/blog/1948869 http://blog.csdn.net/shuangde800/article/details/9109081 ===========================================

2016-11-17 13:12:54 458

原创 Hibernate 安装配置

http://download.jboss.org/jbosstools/updates/stable/kepler http://jingyan.baidu.com/article/db55b609959d154ba20a2f5d.html 尼玛, 老子装这个 插件累死了 。 http://www.cnblogs.com/AlanLee/p/5836823.html

2016-11-14 22:09:28 4641

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除