百度
360搜索
搜狗搜索

the struts,The import org.apache.struts cannot be resolved详细介绍

本文目录一览: The Struts dispatcher cannot be found. This is usually caused by using Strut

struts2

/*

注意

这里一定要是 /*

http://haoqin222.javaeye.com/blog/642810

Myeclipse编写JSP500错误

一般是你后台代码运行时异常,可以查看抛到页面上的信息可以定位到具体代码行。常见的错误原因如下:
空指针异常,java代码中有变量未进行初始化。
引用变量拼写错误。
java代码运行抛出异常,有可能是数组越界、内存不够。
一般500错误,是你的程序哪写的有问题,你自己好好检查下
The Struts dispatcher cannot be found. 。。。。。。。。。。
认真看下这句话
把 struts2 的过滤器的url-pattern改下
在web.xml中 改成

/*

struts怎么读

读法可以参考百度翻译的结果
struts 英[st'r?ts] 美[st'r?ts]
n. (框架的)支杆( strut的名词复数 );支柱;趾高气扬的步态;(尤指跳...
v. 趾高气扬地走,高视阔步( strut的第三人称单数 )
[例句]
1."Even at these forces, only a few struts of bone might break; these would healeasily," he said.
“即使在这种压力下剑角龙骨骼中也只有一些小支柱的骨头才会断裂而且这些骨骼很容易恢复”他说.
2.Rewalk consists of a set of plastic-covered aluminium struts, linked byactuator motors, that are strapped to the user's legs and waist, and abackpack.
“重新行走”包括马达驱动器连接塑料覆盖的铝制支柱,绑在使用者的腿部和腰部,以及一个背包。
3.The right approach towards bonuses has three struts.
正确处理奖金问题有三个原则。
4.Undo the three fastening screws for the spring struts at the left and right.
旋开左右两侧减震器的三颗紧固螺钉。
5.The wild popularization of this structure for web applications is due to itsinclusion in two development frameworks that have become immenselypopular: struts and ruby on rails.
这种架构模式的疯狂流行是由于两个极其流行的开发框架将这种模式包含了进来,它们是:struts和ruby on rails。

struts的读音?

你好,高兴帮助你。
请你采纳,谢谢!!
struts的读音是:
/str?ts/
struts
详细用法>>
英 [st'r?ts] 美 [st'r?ts]
n. 标记层;源代码(strut的复数)
v. 大摇大摆地走;鼓起;炫耀(strut的第三人称单数)
[例句]
He struts around town like he owns the place.
他在城里大摇大摆地晃荡,好像这是他的地盘。

丨eg怎么读的?

leg的读音是:英 [leɡ],美 [leɡ]。    
n. 腿
vi. 用脚走路
例句:He legged after me.
翻译:他在我后面走。
用法
n. (名词)
leg指动物或人的“腿”,是可数名词;指“腿肉”时,既可用作可数名词,也可用作不可数名词。leg有时指“(一段)旅程”或“(一个运动项目的)赛程”,是新闻用语。
近义词
brace 
英 [bre?s] 美 [bre?s]    
v. 防备;支撑;绷紧;振作
n. 支柱;支架;牙箍;一对;(复)吊带裤;大括号
例句:The struts are firmly braced.
翻译:那些支柱上得很牢固。
用法
v. (动词)
brace的基本意思是“支撑”,指“支住,撑牢,使绷紧”,以使被支撑物在压力面前坚固,坚硬,不屈服。引申可指“使某人站稳,振作起来”。

The import org.apache.struts cannot be resolved

还要 add to build path
如果是在myeclipse 里就右击struts.jar选择build path->add to build path
个人理解是lib里有了包是第一步 但是还要用上面步骤来进行关联 这样lib下的包就会出现在Referenced Libraries里
1、确认一下是否有struts开发包内的lib文件夹下的文件:struts-bean.tld、struts-html.tld、struts-logic.tld、struts-nested.tld、struts-template.tld等9个文件(struts1.0版本所必须的9个文件)。
2、确认以下是否导入了正确的struts版本。
3、确认在项目发布的过程中,是否将所有必须文件发布到服务器上。

Struts架构中的Session对象创建和控制

  首先谈一下对session对象在web开发中的创建以及sessionId生成并返回客户端的运行机制
  session对象当客户端首次访问时 创建一个新的session对象 并同时生成一个sessionId 并在此次响应中将sessionId以响应报文的方式些回客户端浏览器内存或以重写url方式送回客户端 来保持整个会话 只要sever端的这个session对象没有销毁 以后再调用request getSession()时就直接根据客户端的sessionId来检索 server端生成的session对象并返回 不会再次去新建 除非根据此sessionId没有检索到session对象
  下面是在IE下测试 因为IE 的一个BUG就是IE的隐私设置即使是阻止所有cookie时 也还是会以会话cookie来保存sessionId 所以下面都是以会话cookie来讨论的
  ( )在server没有关闭 并在session对象销毁时间内 当客户端再次来请求server端的servlet或jsp时 将会将在第一次请求时生成的sessionId并附带在请求信息头中并向server端发送 server端收到sessionId后根据此sessionId会去搜索(此过程是透明的)server对应的session对象并直接返回这个 session对象 此时不会重新去建立一个新的session对象
  ( )当server关闭(之前产生的session对象也就消亡了) 或 session对象过了其销毁时间后 浏览器窗口不关 并在本浏览器窗口再次去请求sever端的servlet和jsp时 此时同样会将 sessionId(server关闭或session销毁时生成的sessionId)发送到server端 server根据sessionId去找其对应的session对象 但此时session对象已经不存在 此时会重新生成一个新的session对象 并生成新的sessionId并同样将这个新生成的sessionId以响应报文的形式送到浏览器内存中
  ( )当server没有关闭 并session对象在其销毁时间内 当请求一个 jsp页面回客户端后 关闭此浏览器窗口 此时其内存中的sessionId也就随之销毁 在重新去请求sever端的servlet或jsp时 会重新生成一个sessionId给客户端浏览器 并存在浏览内存中
  上面的理论在servlet中测试都是成立的 下面谈一下在struts框架下进行上面的测试时的不同的地方
  先简要说下测试程序的流程
  客户端请求index do——>进入server端的IndexAction——>转向login jsp页面——>请求login do——>进入server端的LoginAction
  首先说明 IndexAction中没有去产生session对象 login jsp中设置<%@ page session= false %>
  ( )环境servlet + jsp
  在sevlet+jsp测试跟踪时 在index do进入IndexAction 后转向login jsp时 此时浏览器内存中是没有会话cookie的 那么在login jsp上请求login do进入LoginAction 后 用request getCookies()测试时 其值是为null的!结果是稳合的 因为从始置终没有产生过session嘛!
  ( )环境struts + jsp
  在struts+jsp测试跟踪时 跟上面的流程一样 开始想结果也应该是一样的 但经过调试后发现结果却不是所想的那样 在login do进入LoginActoin后用 用request getCookies()测试时 发现其值不为null 即其有name和value 开始很不理解 因为根本就没有创建过session对象 哪来的会话cookie值呢 但是结果有 那么想着此时浏览器内存中也就应该有会话cookie 问题就在这里!从哪里来的?
  后来经过仔细考虑后 想到struts中的特点 我们自己写的Action类是继承struts的Action的 而且之前是经过struts的中央控制器ActionServlet来控制转向的 所以我想肯定是在程序进入我自己写的 IndexAction之前 struts框架中的代码肯定已经创建了session对象并已经生成了sessionId 于是就找到相关书籍查看了 ActionServlet工作流程以及调用哪些类 看了之后果然在其中看到了HttpSession session = request getSession() 这样一句话!于是答案也就明了了
  大家知道struts的ActionServlet类中在接收到我们客户端的请求 (* do)后(之前会做一系列初始化工作) 并不是直接去处理我们的请求并调用相应的Action(我们写的如IndexAction) 而是将处理工作交给RequestProcessor类 其process方法中会调用一系列的方法来完成相应的请求处理和转向操作 其中有一个方法引起了我的关注 就是processLocale()方法
  Struts框架 RequestProcess类中的processLocale()方法原型如下
  程序代码
   protected void processLocale(HttpServletRequest request HttpServletResponse response) { // Are we configured to select the Locale automatically? if (!moduleConfig getControllerConfig() getLocale()) { return; } // Has a Locale already been selected? HttpSession session = request getSession(); if (session getAttribute(Globals LOCALE_KEY) != null) { return; } // Use the Locale returned by the servlet container (if any) Locale locale = request getLocale(); if (locale != null) { if (log isDebugEnabled()) { log debug( Setting user locale + locale + ); } session setAttribute(Globals LOCALE_KEY locale); } }
  此类在struts config xml配置文件中有对应的配置项 < controller locale= true >< /controller> 其缺省状态locale属性的值为true 也就会调用processLocale方法 并在第一次请求时创建session对象和生成 sessionId 但改为false后 在第一次请求到达ActionServlet后不会调用processLocale方法 也就不会生成 session对象了
  结果也就出来了 在struts应用中 * do到达server端后经过 ActionServlet后转想我们自己写的IndexAction之前 < controller locale= true >< /controller>(缺省状态) 时 就已经产生了session对象和sessionId 这是struts框架类中生成的 即使我们在IndexAction中写上 HttpSession session = request getSession() 其也是RequestProcess类中的processLocale()方法生成的 此时其session 的isNew也还是true 因为还没有返回客户端 其是新创建的 那么按照上面的流程 当在login jsp上通过login do进入 LoginAction后 其request getCookies()固然也就有值了!并且其值是RequestProcess类中的 processLocale()方法产生session对象时生成的
lishixinzhi/Article/program/Java/ky/201311/28281

struts2项目性能调优三步曲(一)

  前一段时间有反映说是一个使用了struts 的生产系统的页面显示速度太慢 登录后发现确实如此 于是进行了一番性能调优的研究和测试
  一 根据struts 官方的性能调优说明进行了一些参数的修改
  //struts apache / x/docs/performance tuning //cwiki apache /WW/performance tuning
  Turn off logging and devMode (关闭logging和Devmode)
  这个当然没问题 但是全部关闭logging不现实 我只是关闭了struts 相关package的logging

  Do not use interceptors you do not need 把struts xml中不需要的interceptor统统删除
  Use the correct HTTP headers (Cache Control & Expires)
  不确定应该如何修改
  Copy the static content from the Struts jar when using the Ajax theme (Dojo) or the Calendar tag 关于这点 后面会提到
  Create a freemarker properties file in your WEB INF/classes directory 照做
  Create the freemarker properties file and add the following setting (or whatever value you deem fitting) template_update_delay= 照做
  Enable Freemarker template caching As of Struts setting the property struts freemarker templatesCache to true will enable the Struts internal caching of Freemarker templates This property is set to false by default 照做
  进行上述修改后 发现页面打开的速度并没有明显的提高
  二 此时我已经基本锁定网页打开速度慢的原因与ajax(或者说是dojo)有关 因为dojo的js库大概有 K左右 先尝试使用gzip压缩javascript 减小传输量 看能否加快页面的加载速度在Tomcat的server xml的connector中添加如下配置 激活gzip功能pression= on pressionMinSize= noCompressionUserAgents= gozilla traviata pressableMimeType= text/ text/xml text/javascript application/x javascript application/javascript 进行上述修改后 发现页面打开的速度还是没有明显的提高
  三 经过上述两个实验 觉得应该是struts 所封闭的dojo的性能问题了 于是引入JQuery JQuery的js文件最小是 K gzip后应该更小 页面的响应速度明显改善(一个数量级以上的提高) 主要原因在于与服务器交互的处理上极大地提升了效率 而且页面处理代码更加简洁明了
lishixinzhi/Article/program/Java/ky/201311/29170

翻译一段话1

Project experience
Project name: jilin medical insurance information management and warning decision system
Time: 2010 September - April 2011
Development tools: MyEclipse8.5 + Tomcat6.0 + SQL Server 2000
Project description:
This project belongs to jilin science and technology development key projects, the project for current medical insurance management system of data for the user, and risk detection provide decision support. This project use Java language and JSP technology development, adopts B/S structure, the use of the Struts2 framework and Hibernate framework, realized insurane card use anomaly detection, pharmacy sales anomaly detection, hospital medicine anomaly detection, medical insurance fund reimbursement and allocation decision support etc function modules.
Responsibility description:
Build the project Struts2 and Hibernate framework, realized the homepage design, completed the pharmacy sales anomaly detection this function module, and participated in the medical insurance card use anomaly detection and medical insurance fund reimbursement and allocation decision support this two parts algorithm design and implementation.
Project name: based on bayesian algorithm text classifier
Time: 2010 November - December 2010
Development tools: MyEclipse8.5 + Python 2.5 + Weka3.6 + Lucene + IKAnalyzer
Project description:
This system is I'm learning machine learning and data mining, and implements a when Chinese text classification procedures. System is divided into two parts, the first part is the mail classification, the 2nd part is article categories. In part, the system through email classification training, can from mail collection filter out spam. In part, the system through the classification, to the training of the collection of lu allocated to the relevant categories.
Responsibility description:
Implements a simple Python crawler used to grab Web articles, realized the mail plain bayes classification part classification algorithm, the design framework of the classifier, realized the Chinese word segmentation part, establish bayesian model part, text classification part of the relevant source.
Project name: Linux in network disk systems
Time: in March 2010 - in June 2010
Development tools Ubuntu9.10 + MyEclipse7.1 + Tomcat6.0: + MySQL5.0
Project description:
This system is my undergraduate course graduation design of research. System in Linux operating systems development, adopts B/S structure, realizing the function of similar netease 163 disc. System realizes the user register and login, file upload and download, delete, rename, folders establishment, file download, file sharing pack etc. Function. Easy to use, and because the system of the whole system are using cross-platform tools development, so the system has a good portability.
Responsibility description:
Completed system development, and designs the major function module construction, and realized the full source code.
PS:这是全文
Project name: jilin medical insurance information management and warning decision system
Time: 2010 September - April 2011
Development tools: MyEclipse8.5 + Tomcat6.0 + SQL Server 2000
Project description:
This project belongs to jilin science and technology development key projects, the project for current medical insurance management system of data for the user, and risk detection provide decision support. This project use Java language and JSP technology development, adopts B/S structure, the use of the Struts2 framework and Hibernate framework, realized insurane card use anomaly detection, pharmacy sales anomaly detection, hospital medicine anomaly detection, medical insurance fund reimbursement and allocation decision support etc function modules.
Responsibility description:
Build the project Struts2 and Hibernate framework, realized the homepage design, completed the pharmacy sales anomaly detection this function module, and participated in the medical insurance card use anomaly detection and medical insurance fund reimbursement and allocation decision support this two parts algorithm design and implementation.
我帮你还翻译了1还是2呀?忘了!这个也正确の!
Project Name: Jilin medical insurance information management and early warning decision support system
Time: September 2010 - April 2011
Development Tools: MyEclipse8.5 + Tomcat6.0 + SQL Server 2000
Project Description:
Technology Development of Jilin Province of the project is key projects, project management for the current health insurance risk data in the system testing, and to provide users with decision support. The project uses Java language and JSP technology development, the use of B / S architecture, the use of the Struts2 framework and Hibernate frameworks, to achieve the health insurance card detection, pharmacy sales anomaly detection, anomaly detection of Drugs, Medicare reimbursement and the allocation of funds and other decision support functional modules.
Responsibility:
Build the project and Hibernate Struts2 framework designed to achieve the main page, and completed the pharmacy sales anomaly detection modules, and to participate in the health insurance card health insurance fund anomaly detection and decision support reimbursement and distribution of the two parts of the algorithm design and achieved. I have a foundation I will use the translation software..............
Project Name:Medical Insurance Information Management and Early Warning Decision System in Jilin province.
Time: September 2010 to April 2011
Development tool: MyEclipse8.5 + Tomcat6.0 + SQL Server 2000
Project Description: The project is key project for science and technology Development in Jilin province to detect the data risks in current medical insurance management system and provide decision support to users. It uses Java language , JSP technology development, B/S framework as well as Struts2 and Hibernate ones, realizing Insurane card use anomaly detection, pharmacy sales anomaly detection, hospital medicine anomaly detection, medical insurance fund reimbursement and allocation decision support, etc.
Duty Description: It has set up Struts2 and Hibernate framework, realized homepage design, completed functional module in pharmacy sales anomaly detection and participated in algorithm design and implementation for the above functional modules.

阅读更多 >>>  struts框架包含(struts框架总结)

中译英,个人简历

Self-Profile
Self-assessment: With pleasant personality , be expert in exchange , can bear bigger pressure. Job sense of responsibility is comparatively more standard than strong , compiling and composing a code.
Job and project experience:
XXX system: Be system's turn to be to have built XXXX application system, the person contains the operative plan and the dynamic scheduling , procedure of production simulates , the handicraft manages, material moves supervisory control , quality control , equipment control and produces seven such as counting and analysing being allotted system, system has carried out integration with XXX system , bar code information collect system , detecting line system , XXX equipment supervisory control system , XXX system , XX system , accessory after-sale services , I have been in charge of process management module design and exploitation mainly , has owed a module the administration realizing the handicraft data mainly, Distribute material printing only , use MVC structure, the process management proscenium interface uses JSP and the Struts label , that Servlet is put into use is the struts action. Programming that backstage logic business uses to be geared to the needs of interface, dao has used Hibernate tier , has expected that more alone, Shan printing develops , transfers the day afer tomorrow temporarily for a specific task in the proscenium because of data amount, the memory process using Oracle handles to data go along, the data handling the day afer tomorrow's uses the JXL API to generate the excel document directly being for consumer time be loaded with's being put into use.
Accessory after-sale services system: Owe system the platform being the business technological process that business exchanges between the company be used for and the customer as well as between inside employee. Owe system the business technological process having integrated enterprise, resource utilization ratio having improved a company. Attachment warehouse room in managing a module that I am in charge of is borrowed returning to returning a function back: Owe mixing that the function relates to between being stock a problem, the stock mixing, communicates with transversely between having realized each upper net storehouses between having reinforced inside of company. Be a function's turn to have used the struts label face to face page, that servlet is put into use has been the struts action , dao has used spring and the Ibatis frame tier.
Train go through:
In jsp , struts training a period my systematic an ABC having studied j2se's , j2ee, be geared to the needs of marriage partner design Uml and oracle. I have participated in management system Tel OBS-consuming telecommunication level meter exploitation in the learning process , further, have taken self team combined efforts ability exercise , have known SSH , PL/SQL very well, integrate to what be mimicked knowledge having been in progress.
The tune lasting for a week , concentrating on having studied SQL Server gives the technology , automation administration , back-up tactics , data recovery preferential treatment. Server training U860SP ending the queen use friend to company inner system usage SQL has carried out an optimization, union server hardware promotion, working efficiency improves making an appointment with 40%, Server has interposed automation administration tactics at the same time to what self manages SQL , has improved self availability.
The basic lasting for a week , concentrating on having studied Weblogic deploys , the recovery processing and the cluster deploy.
译文:
Self-evaluation: cheerful personality, good communication, can withstand the pressure. A strong sense of responsibility work, the preparation of a fairly standard code.
And the experience of the project:
XXX: The system is set up XXXX applications, which includes operations planning and scheduling, manufacturing process simulation, process management, monitoring movement of materials, quality management, equipment management and production statistics and analysis of the seven sub-systems, and the system XXX , Bar-code information collection systems, line testing system, XXX equipment monitoring system, XXX system, XX, accessories after-sales service system integration, I mainly responsible for the management process module design and development, the main module technology to achieve data management, Made a single print material, the use of MVC structure, process management using the interface front Struts and JSP tags, Servlet using struts of the action.'s Logic business background to use interface for programming, dao layer using Hibernate, expected as a result of a single print data A larger volume of a separate development, in the front after the call, the use of the Oracle stored procedures for data processing, data handling JXL the use of the API directly generate excel file for the user to download to use.
Accessories after-sales service system:: The system is used for business exchange between the customer and in-house staff, as well as between the business process platform. The system integrates business processes and improve the company's resource utilization. I am responsible for the spare parts Management of inter-library loan return: the function is involved in the allocation of stock between the issue and realize the various on-line warehouse inventory between the deployment and strengthening the company's internal communication between the horizontal. Page features the use of the label struts, servlet using the struts of the action, dao-use of the spring and Ibatis framework.
Training experience:
During my training in the system to learn the basics of j2se the, j2ee the jsp, struts, object-oriented design Uml, as well as oracle. I am in the learning process involved in the management system for carrier-grade billing Tel OBS development, to further exercise their teamwork ability, familiar with SSH, PL / SQL, on the knowledge to carry out the integration.
A week-long focus on learning the tuning of SQL Server technology, automation management, backup strategy, data recovery. After the end of training on the company's U860SP UF system used by the SQL Server is optimized, the combination of server hardware upgrade, improve the operating efficiency of about 40%, while the management of their SQL Server set up automated management strategies to improve their work Efficiency.
A week-long focus on learning the basic configuration of Weblogic, and the failure to deal with cluster configuration.
Self-evaluation: cheerful personality, good communication, can withstand the pressure. A strong sense of responsibility work, the preparation of a fairly standard code.
And the experience of the project:
????: The system is set up ????applications, which includes operations planning and scheduling, manufacturing process simulation, process management, monitoring movement of materials, quality management, equipment management and production statistics and analysis of the seven sub-systems, and the system???? , Bar-code information collection systems, line testing system, ???equipment monitoring system, ??? system, ??, accessories after-sales service system integration, I mainly responsible for the management process module design and development, the main module technology to achieve data management, Made a single print material, the use of MVC structure, process management using the interface front Struts and JSP tags, Servlet using struts of the action.'s Logic business background to use interface for programming, dao layer using Hibernate, expected as a result of a single print data A larger volume of a separate development, in the front after the call, the use of the Oracle stored procedures for data processing, data handling JXL the use of the API directly generate excel file for the user to download to use.
Accessories after-sales service system:: The system is used for business exchange between the customer and in-house staff, as well as between the business process platform. The system integrates business processes and improve the company's resource utilization. I am responsible for the spare parts Management of inter-library loan return: the function is involved in the allocation of stock between the issue and realize the various on-line warehouse inventory between the deployment and strengthening the company's internal communication between the horizontal. Page features the use of the label struts, servlet using the struts of the action, dao-use of the spring and Ibatis framework.
Training experience:
During my training in the system to learn the basics of j2se the, j2ee the jsp, struts, object-oriented design Uml, as well as oracle. I am in the learning process involved in the management system for carrier-grade billing Tel OBS development, to further exercise their teamwork ability, familiar with SSH, PL / SQL, on the knowledge to carry out the integration.
A week-long focus on learning the tuning of SQL Server technology, automation management, backup strategy, data recovery. After the end of training on the company's U860SP UF system used by the SQL Server is optimized, the combination of server hardware upgrade, improve the operating efficiency of about 40%, while the management of their SQL Server set up automated management strategies to improve their work Efficiency.
A week-long focus on learning the basic configuration of Weblogic, and the failure to deal with cluster configuration.
希望您会满意1!!!
Self-evaluation: cheerful personality, good communication, can withstand the pressure. A strong sense of responsibility work, the preparation of a fairly standard code.
And the experience of the project:
XXX: The system is set up XXXX applications, which includes operations planning and scheduling, manufacturing process simulation, process management, monitoring movement of materials, quality management, equipment management and production statistics and analysis of the seven sub-systems, and the system XXX , Bar-code information collection systems, line testing system, XXX equipment monitoring system, XXX system, XX, accessories after-sales service system integration, I mainly responsible for the management process module design and development, the main module technology to achieve data management, Made a single print material, the use of MVC structure, process management using the interface front Struts and JSP tags, Servlet using struts of the action.'s Logic business background to use interface for programming, dao layer using Hibernate, expected as a result of a single print data A larger volume of a separate development, in the front after the call, the use of the Oracle stored procedures for data processing, data handling JXL the use of the API directly generate excel file for the user to download to use.
Accessories after-sales service system:: The system is used for business exchange between the customer and in-house staff, as well as between the business process platform. The system integrates business processes and improve the company's resource utilization. I am responsible for the spare parts Management of inter-library loan return: the function is involved in the allocation of stock between the issue and realize the various on-line warehouse inventory between the deployment and strengthening the company's internal communication between the horizontal. Page features the use of the label struts, servlet using the struts of the action, dao-use of the spring and Ibatis framework.
Training experience:
During my training in the system to learn the basics of j2se the, j2ee the jsp, struts, object-oriented design Uml, as well as oracle. I am in the learning process involved in the management system for carrier-grade billing Tel OBS development, to further exercise their teamwork ability, familiar with SSH, PL / SQL, on the knowledge to carry out the integration.
A week-long focus on learning the tuning of SQL Server technology, automation management, backup strategy, data recovery. After the end of training on the company's U860SP UF system used by the SQL Server is optimized, the combination of server hardware upgrade, improve the operating efficiency of about 40%, while the management of their SQL Server set up automated management strategies to improve their work Efficiency.
A week-long focus on learning the basic configuration of Weblogic, and the failure to deal with cluster configuration.
Self-evaluation:
Cheerful personality, good communication skills, able to perform well under pressure,strong sense of responsibility, proficient in cord writing.....
Professional experiences:
....
Trainings:
...
Achievements:
...
自我评价:性格开朗,善于交流,能承受较大压力.工作责任心较强,编写代码比较规范.
工作及项目经验:
XXX系统:该系统是建立了XXXX应用系统,其包含作业计划与动态调度、生产过程仿真、工艺管理,物料移动监控、质量管理、设备管理和生产统计与分析等七个分系统,与XXX系统、条码信息采集系统、检测线系统、XXX设备监控系统、XXX系统、XX系统、配件售后服务系统进行了集成,我主要负责工艺管理模块的设计与开发,该模块主要实现工艺数据的管理,发料单打印,使用MVC结构,工艺管理前台界面使用JSP和Struts标签,Servlet使用的是struts的action.后台的逻辑业务使用面向接口的编程,dao层使用了Hibernate,料单打印因数据量较大单独开发,在前台调用后,使用Oracle的存储过程对数据进行处理,处理后的数据使用JXL的API直接生成excel文件供用户下载使用。
配件售后服务系统::该系统是公司用于和客户之间业务交流以及内部员工之间的业务流程的平台.该系统整合了企业的业务流程,提高了公司的资源利用率. 本人负责的备件管理模块中的库间借用返还功能:该功能涉及的是库存之间的调配问题,实现了网上各个仓库之间库存的调配,加强了公司内部之间横向交流.该功能页面使用了struts标签,servlet使用的是struts的action,dao层使用了spring和Ibatis框架.
培训经历:
在培训期间我系统的学习了j2se的基本知识,j2ee的jsp、struts,面向对象的设计Uml以及oracle。在学习过程中我参与了电信级计费管理系统Tel OBS的开发,进一步锻炼了自己的团队协作能力,熟悉了SSH,PL/SQL,对所学知识进行了整合。
为期一周,重点学习了SQL Server的调优技术、自动化管理、备份策略、数据恢复。培训结束后对公司内的用友U860SP系统使用的SQL Server进行了优化,结合服务器硬件的升级,运行效率提高约40%,同时对自己所管理SQL Server设置了自动化管理策略,提高了自己的工作效率。
为期一周,重点学习了Weblogic的基本配置,故障处理及集群配置。=I evaluation: cheerful personality, good communication, can withstand the pressure. A strong sense of responsibility work, the preparation of a fairly standard code.
And the experience of the project:
XXX: The system is set up XXXX applications, which includes operations planning and scheduling, manufacturing process simulation, process management, monitoring movement of materials, quality management, equipment management and production statistics and analysis of the seven sub-systems, and the system XXX , Bar-code information collection systems, line testing system, XXX equipment monitoring system, XXX system, XX, accessories after-sales service system integration, I mainly responsible for the management process module design and development, the main module technology to achieve data management, Made a single print material, the use of MVC structure, process management using the interface front Struts and JSP tags, Servlet using struts of the action.'s Logic business background to use interface for programming, dao layer using Hibernate, expected as a result of a single print data A larger volume of a separate development, in the front after the call, the use of the Oracle stored procedures for data processing, data handling JXL the use of the API directly generate excel file for the user to download to use.
Accessories after-sales service system:: The system is used for business exchange between the customer and in-house staff, as well as between the business process platform. The system integrates business processes and improve the company's resource utilization. I am responsible for the spare parts Management of inter-library loan return: the function is involved in the allocation of stock between the issue and realize the various on-line warehouse inventory between the deployment and strengthening the company's internal communication between the horizontal. Page features the use of the label struts, servlet using the struts of the action, dao-use of the spring and Ibatis framework.
Training experience:
During my training in the system to learn the basics of j2se the, j2ee the jsp, struts, object-oriented design Uml, as well as oracle. I am in the learning process involved in the management system for carrier-grade billing Tel OBS development, to further exercise their teamwork ability, familiar with SSH, PL / SQL, on the knowledge to carry out the integration.
A week-long focus on learning the tuning of SQL Server technology, automation management, backup strategy, data recovery. After the end of training on the company's U860SP UF system used by the SQL Server is optimized, the combination of server hardware upgrade, improve the operating efficiency of about 40%, while the management of their SQL Server set up automated management strategies to improve their work Efficiency.
A week-long focus on learning the basic configuration of Weblogic, and the failure to deal with cluster configuration.

阅读更多 >>>  struts2怎么念,请你谈谈对struts2的理解

网站数据信息

"the struts,The import org.apache.struts cannot be resolved"浏览人数已经达到14次,如你需要查询该站的相关权重信息,可以点击进入"Chinaz数据" 查询。更多网站价值评估因素如:the struts,The import org.apache.struts cannot be resolved的访问速度、搜索引擎收录以及索引量、用户体验等。 要评估一个站的价值,最主要还是需要根据您自身的需求,如网站IP、PV、跳出率等!