java毕业生实习报告_第1页
java毕业生实习报告_第2页
java毕业生实习报告_第3页
java毕业生实习报告_第4页
java毕业生实习报告_第5页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

stressed that promoting the comprehensive revitalization should focus on economic construction as the central focus with, pay special attention to grasp the implementation of five development concepts, deepening reform and promoting the all-round opening up, ensuring and improving peoples livelihood, strengthen the construction of ecological civilization, five priorities, play development mix. To with new development concept measure work, and command action, and training cadres, in implement implementation new development concept in the looking for opportunities, and build highlights, and expand advantage; to full deepening reform, break bound the aspects created vitality of system mechanism obstacles; to active advance full aspects opening, participation in the cast Russian Economic Corridor construction; to guarantees and improved livelihood, strongly won poverty battle; to strengthening ecological civilization construction, for sustainable development reserved space, for future generations left sky blue, and to green, and water clear of better homes. We must in-depth implement implementation new development concept, insisted to economic construction for Center, firmly caught development this first priority, absorbed make construction, heart no distractions caught development, speed up development six big industry, in-depth implementation three big engineering, active create two big environment, out of a article quality more high, and benefits better, and structure more excellent of transformation development of road. To strengthen ecological construction. On March 22, the deep restructuring examined and adopted the opinion on perfecting compensation mechanism of ecological protection, proposed to explore the establishment of diversified ecological compensation mechanism, progressive realization of forests, grasslands, wetlands and other areas of focus and key ecological function and other important regional ecological compensation coverage, the ecological advantages of the region will be further highlighted. We need to go green eco-building, as the essential policy, in strict accordance with the State of main function region construction requirements, careful implementation and Xiaoxing an mountains forest ecological protection and economic restructuring plan for the construction of sky blue, . Acts prohibited by picking up the remaining wells in standing timber. To focus on forest resource conservation, increase the acquisition and supervision of cold storage, no buy fruit, encourage support to leading enterprises, workers cooperatives as a unit, the contract management of forest resources, the rational protection and utilization of resources. To work actively towards policy aimed from the level of the State Forestry Administration formulated regulations to protect forest resources as soon as possible to achieve law and regulation to protect forest resources. Should focus on forest fire prevention. Fire safety is the first priority一、实习时间二、实习地点三、实习目的由于在校期间学习了Java技术,各项成绩优异,被北京XXXXXXXX有限公司录用为java软件开发实习生,作为即将步入社会的应届毕业生,我带着无比激动的心情和远大的理想,到XXXX信息技术有限公司录用实习,实习目的如下:进一步了解java开发的相关知识,掌握java开发的基本技术,丰富java开发的实战经验。学习SQL的基础知识及正确的运用方法,和有用的相关技术,提高自己的工作效率。通过实习,巩固大学所学专业的基本知识,提高分析、判断和处理实际问题的能力,锻炼自己的实际动手能力,增强自己的团队协作意识,了解软件开发的思考角度和主要流程。为毕业之后能够更快地进入工作状态并且能够更好的工作,打好一定的基础。四、实习单位综合概述北京XXXX信息技术有限公司是一家有互联网精神的技术服务商。依托北京理工大学的军工背景和工程技术优势,北京XXXX信息技术有限公司积极拓展军民两用市场,致力于为用户提供全方位的软硬件产品、IT解决方案和技术咨询服务。北京XXXX信息技术有限公司的业务有两大方面:互联网产品和企业信息化。互联网产品:公司的新兴业务,面向个人与企业级的互联网产品运营。企业信息化业务:包括管理软件方面和工业级系统业务五、实习内容本人来到公司后,发现自己的技术上还是和公司的要求具有一定的差距,虽然在校期间学校成绩尚可,期间也做了几个项目,但这和公司所做的大型项目比起来,简直是微不足道的。所以我为自己制定了一系列的实习计划,在公司所要求的技术层面上精益求精,下面,我对公司采用的技术,即我的实习内容做一下阐释:1. 公司采用的编程语言 Java语言java是一种可以撰写跨平台应用软件的面向对象的程序设计语言,是由Sun Microsystems公司于1995年5月推出的Java程序设计语言和Java平台(即JavaEE, JavaME, JavaSE)的总称。Java自面世后就非常流行,发展迅速,对C+语言形成了有力冲击。Java 技术具有卓越的通用性、高效性、平台移植性和安全性,广泛应用于个人PC、数据中心、游戏控制台、科学超级计算机、移动电话和互联网,同时拥有全球最大的开发者专业社群。在全球云计算和移动互联网的产业环境下,Java更具备了显著优势和广阔前景。2. Java中的常用设计模式1) 工厂模式客户类和工厂类分开。消费者任何时候需要某种产品,只需向工厂请求即可。消费者无须修改就可以接纳新产品。缺点是当产品修改时,工厂类也要做相应的修改。如:如何创建及如何向客户端提供。 2)建造模式将产品的内部表象和产品的生成过程分割开来,从而使一个建造过程生成具有不同的内部表象的产品对象。建造模式使得产品内部表象可以独立的变化,客户不必知道产品内部组成的细节。建造模式可以强制实行一种分步骤进行的建造过程。 3)工厂方法模式核心工厂类不再负责所有产品的创建,而是将具体创建的工作交给子类去做,成为一个抽象工厂角色,仅负责给出具体工厂类必须实现的接口,而不接触哪一个产品类应当被实例化这种细节。 4)原始模型模式通过给出一个原型对象来指明所要创建的对象的类型,然后用复制这个原型对象的方法创建出更多同类型的对象。原始模型模式允许动态的增加或减少产品类,产品类不需要非得有任何事先确定的等级结构,原始模型模式适用于任何的等级结构。缺点是每一个类都必须配备一个克隆方法。 5)单例模式单例模式确保某一个类只有一个实例,而且自行实例化并向整个系统提供这个实例单例模式。单例模式只应在有真正的“单一实例”的需求时才可使用。3. 公司使用的数据库-MySql数据库MySQL数据库管理系统概述MySQL是一个关系型数据库管理系统,由瑞典MySQL AB公司开发,目前属于Oracle公司。Mysql是最流行的关系型数据库管理系统,在WEB应用方面MySQL是最好的RDBMS(关系数据库管理系统)应用软件之一。MySQL是一种关联数据库管理系统,关联数据库将数据保存在不同的表中,而不是将所有数据放在一个大仓库内,这样就增加了速度并提高了灵活性。MySQL所使用的SQL语言是用于访问数据库的最常用标准化语言。MySQL软件采用了双授权政策,它分为社区版和商业版,由于其体积小、速度快、总体拥有成本低,尤其是开放源码这一特点,一般中小型网站的开发都选择MySQL作为网站数据库。由于其社区版的性能卓越,搭配PHP和Apache可组成良好的开发环境。4. java与SQL的应用Java语言是编写数据库应用程序的杰出语言之一,它提供了方便访问数据的技术。利用Java语言中的JDBC技术,用户能方便地开发出基于Web网页的数据库访问程序,从而扩充网络应用功能。JDBC(Java Database Connectivity,Java数据库连接)是一种用于执行SQL语句的Java API,可以为多种关系数据库提供统一的访问接口。JDBC由一组用Java语言编写的类与接口组成,通过调用这些类和接口所提供的方法,用户能够以一致的方式连接多种不同的数据库系统(如Access、SQL Server 2000、Oracle、Sybase等),进而可使用标准的SQL语言来存取数据库中的数据,而不必再为每一种数据库系统编写不同的Java程序代码。5. Servlet技术一个servlet就是Java编程语言中的一个类,它被用来扩展服务器的性能,服务器上驻留着可以通过“请求-响应”编程模型来访问的应用程序。虽然servlet可以对任何类型的请求产生响应,但通常只用来扩展Web服务器的应用程序。Java Servlet技术为这些应用程序定义了一个特定于HTTP的 servlet类。javax.servlet和javax.servlet.http包为编写servlet提供了接口和类。所有的servlet都必须实现Servlet接口,该接口定义了生命周期方法。6. 公司采用的页面设计-JSP页面1) JSP 2.0介绍J S P是由SUN公司倡导、许多公司参与一起建立的一种动态技术标准。在传统的网页HTML文件(*.htm,*.html)中加入 Java程序片段(Scriptlet)和JSP标签,就构成了JSP网页java程序片段可以操纵数据库、重新定向网页以及发送E-mail等,实现建 立动态网站所需要的功能。所有程序操作都在服务器端执行,网络上传送给客户端的仅是得到的结果,这样大 大降低了对客户浏览器的要求,即使客户浏览器端不支持Java,也可以访问JSP网页。7.MVC 模式MVC全名是Model View Controller,是模型(model)视图(view)控制器(controller)的缩写,一种软件设计典范,用一种业务逻辑、数据、界面 显示分离的方法组织代码,将业务逻辑聚集到一个部件里面,在改进和个性化定制界面及用户交互的同时,不需要重新编写业务逻辑。MVC被独特的发展起来用于 映射传统的输入、处理和输出功能在一个逻辑的图形化用户界面的结构中。六、实习体验与心得大学生活让我对计算机理论知识有了一定的了解,但实践出真知,唯有把理论与实践相结合,才能更好地增加自己的竞争力。实践也是大学生学习知识、锻炼才干的有效途径。通过实习,我自身发生了重大的转变。首先,进入公司,你就是一名职业人,不再是一名学生,你要具备一名职业人应具备的素养,不迟到不早退是必然的,而且还要时刻严格要求自己,公司的规定要严格遵守。然后,在技术上也有了很大的提高,学习了很多公司自己的框架和工具,这都是一些前辈的宝贵经验。而且所作的软件应用性更强。所以,我要坚定自己的信念,在公司好好实习,争取提早转正,我相信我会在JAVA开发这条路上走的更长更远。七、致谢 指导教师意见成绩评定:指导教师签字: 年 月 日 实习单位意见负责人签字:(单位盖章)年 月 日备注注:实习结束时,由实习学生填写本表后,交指导教师和实习单位签署意见,最后交所在教学单位归档保管。通过多种方式和手段,进行文献检索、资料收集和整理,旨在了解我国住房制度和当代居住小区规划设计、建设、发展的理论与实践问题the first responsibility of the forest, 26th spring area has fully deployed to the fire, has now entered the fire, we have to be on duty, and defend. Determined to overcome paralysis, must not Twelve-Five no fires in the past, the reduced requirements during the period. To apply strictly the party with the responsibility, must shoulder the responsibility of the Party Secretary in particular, really practice pipes, it can never shuaishouzhanggui, be sure to layer the implementation falls fire responsibility, to ensure that no major forest fires. To adhere to balanced, correctly handle the relationship between fire and project construction, industrial development, to never miss or two. Second, to speed up the development of six major industries. Promote development in our region, the key is to give full play to resource advantage to build eco-oriented big six system, to create the new engine of economic growth. Firm confidence. Practice has proved that the big six of both central and provincial requirements, and meet the actual da hinggan mountains, through active efforts have been showing a strong momentum of development. So, in the six on development, we must be firm in faith, go all out, perseverance, one caught in the end, convinced that Castle is not relaxed, does not reach the target will never give up. Should focus on industrial projects. Project is to accelerate the industrial development of important support and backing. Industrial project construction, my area there are few in number, small size, low level problems. This year, the project as his party has first project, we have to work hard to project construction. Especially effective during short, catching project shall not, slow, dragging not allowed. All localities should conscientiously implement the project leadership system, timetable, roadmap, and coordinate services, tracking the whole process forward, inverted durations, speeding up progress and seek practical results. Poised to break the project build Set challenges, to accelerate the pace of preliminary formalities, the enterprises have

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

最新文档

评论

0/150

提交评论