JAVA工程師技能要求

     近期作了個JAVA工程師分類, JAVA工程師多是市場上最多類的程序員:
  
初級JAVA工程師的基本要求
html

  • Good basic programming skills 良好基本編程技能
  • Foundational Java knowledge JAVA基礎知識
  • Object-Oriented Programming 面向對象編程
  • Learning on the job  工做中持續學習
  • Following instructions and receiving feedback 遵從指示與反饋
  • Thinking like a programmer  像程序員同樣思考

中級JAVA開發Mid-Level Java Developers前端

  • Deep knowledge of Java 熟悉JAVA語言
  • Relevant Java frameworks and toolkits JAVA框架與工具
  • Object-Oriented Programming 面向對象編程
  • Data structures 數據結構
  • Efficient programming and clean code 高效編程,高質量代碼
  • Debugging 程序調試方法
  • Testing 單元測試, 接口測試
  • Mysql 基礎數據類型, SQL, 存儲過程
  • Keep learning 學習能力


高級JAVA工程師通用技能程序員

  • Expert Java knowledge   JAVA知識專家級
  • Object-Oriented Design Patterns   面向對象與設計模式
  • High-level design skills   高層模塊設計
  • Designing for specific requirements (e.g. security, scalability, optimization)  安全, 伸縮, 優化設計
  • DevOps  開發測試運維
  • Distributed/parallel programming   分佈式/並行編程
  • Maintaining and upgrading applications   維護升級應用程序
  • Leadership skills  領導力, 帶團隊
  • Clear communication skills   清晰溝通技能
  • Mentoring junior and mid-level developers  指導初級, 中級開發
  • Understanding business and legal context 理解業務, 商業與法律上下文

  請你們參考與自我評估.  如下 程序員勝任矩陣sql



Computer Scienceshell

2n (Level 0)數據庫

n2 (Level 1)express

n (Level 2)編程

log(n) (Level 3)設計模式

Commentssass

data structures

Doesn’t know the difference between Array and LinkedList

Able to explain and use Arrays, LinkedLists, Dictionaries etc in practical programming tasks

Knows space and time tradeoffs of the basic data structures, Arrays vs LinkedLists, Able to explain how hashtables can be implemented and can handle collisions, Priority queues and ways to implement them etc.

Knowledge of advanced data structures like B-trees, binomial and fibonacci heaps, AVL/Red Black trees, Splay Trees, Skip Lists, tries etc.

algorithms

Unable to find the average of numbers in an array (It’s hard to believe but I’ve interviewed such candidates)

Basic sorting, searching and data structure traversal and retrieval algorithms

Tree, Graph, simple greedy and divide and conquer algorithms, is able to understand the relevance of the levels of this matrix.

Able to recognize and code dynamic programming solutions, good knowledge of graph algorithms, good knowledge of numerical computation algorithms, able to identify NP problems etc.

Working with someone who has a good topcoder ranking would be an unbelievable piece of luck!

systems programming

Doesn’t know what a compiler, linker or interpreter is

Basic understanding of compilers, linker and interpreters. Understands what assembly code is and how things work at the hardware level. Some knowledge of virtual memory and paging.

Understands kernel mode vs. user mode, multi-threading, synchronization primitives and how they’re implemented, able to read assembly code. Understands how networks work, understanding of network protocols and socket level programming.

Understands the entire programming stack, hardware (CPU + Memory + Cache + Interrupts + microcode), binary code, assembly, static and dynamic linking, compilation, interpretation, JIT compilation, garbage collection, heap, stack, memory addressing…

Software Engineering

2n (Level 0)

n2 (Level 1)

n (Level 2)

log(n) (Level 3)

Comments

source code version control

Folder backups by date

VSS and beginning CVS/SVN user

Proficient in using CVS and SVN features. Knows how to branch and merge, use patches setup repository properties etc.

Knowledge of distributed VCS systems. Has tried out Bzr/Mercurial/Darcs/Git

build automation

Only knows how to build from IDE

Knows how to build the system from the command line

Can setup a script to build the basic system

Can setup a script to build the system and also documentation, installers, generate release notes and tag the code in source control

automated testing

Thinks that all testing is the job of the tester

Has written automated unit tests and comes up with good unit test cases for the code that is being written

Has written code in TDD manner

Understands and is able to setup automated functional, load/performance and UI tests

Programming

2n (Level 0)

n2 (Level 1)

n (Level 2)

log(n) (Level 3)

Comments

problem decomposition

Only straight line code with copy paste for reuse

Able to break up problem into multiple functions

Able to come up with reusable functions/objects that solve the overall problem

Use of appropriate data structures and algorithms and comes up with generic/object-oriented code that encapsulate aspects of the problem that are subject to change.

systems decomposition

Not able to think above the level of a single file/class

Able to break up problem space and design solution as long as it is within the same platform/technology

Able to design systems that span multiple technologies/platforms.

Able to visualize and design complex systems with multiple product lines and integrations with external systems. Also should be able to design operations support systems like monitoring, reporting, fail overs etc.

communication

Cannot express thoughts/ideas to peers. Poor spelling and grammar.

Peers can understand what is being said. Good spelling and grammar.

Is able to effectively communicate with peers

Able to understand and communicate thoughts/design/ideas/specs in a unambiguous manner and adjusts communication as per the context

This is an often under rated but very critical criteria for judging a programmer. With the increase in outsourcing of programming tasks to places where English is not the native tongue this issue has become more prominent. I know of several projects that failed because the programmers could not understand what the intent of the communication was.

code organization within a file

no evidence of organization within a file

Methods are grouped logically or by accessibility

Code is grouped into regions and well commented with references to other source files

File has license header, summary, well commented, consistent white space usage. The file should look beautiful.

2n (Level 0)

n2 (Level 1)

n (Level 2)

log(n) (Level 3)

Comments

code organization across files

No thought given to organizing code across files

Related files are grouped into a folder

Each physical file has a unique purpose, for e.g. one class definition, one feature implementation etc.

Code organization at a physical level closely matches design and looking at file names and folder distribution provides insights into design

source tree organization

Everything in one folder

Basic separation of code into logical folders.

No circular dependencies, binaries, libs, docs, builds, third-party code all organized into appropriate folders

Physical layout of source tree matches logical hierarchy and organization. The directory names and organization provide insights into the design of the system.

The difference between this and the previous item is in the scale of organization, source tree organization relates to the entire set of artifacts that define the system.

code readability

Mono-syllable names

Good names for files, variables classes, methods etc.

No long functions, comments explaining unusual code, bug fixes, code assumptions

Code assumptions are verified using asserts, code flows naturally – no deep nesting of conditionals or methods

defensive coding

Doesn’t understand the concept

Checks all arguments and asserts critical assumptions in code

Makes sure to check return values and check for exceptions around code that can fail.

Has his own library to help with defensive coding, writes unit tests that simulate faults

2n (Level 0)

n2 (Level 1)

n (Level 2)

log(n) (Level 3)

Comments

error handling

Only codes the happy case

Basic error handling around code that can throw exceptions/generate errors

Ensures that error/exceptions leave program in good state, resources, connections and memory is all cleaned up properly

Codes to detect possible exception before, maintain consistent exception handling strategy in all layers of code, come up with guidelines on exception handling for entire system.

IDE

Mostly uses IDE for text editing

Knows their way around the interface, able to effectively use the IDE using menus.

Knows keyboard shortcuts for most used operations.

Has written custom macros

API

Needs to look up the documentation frequently

Has the most frequently used APIs in memory

Vast and In-depth knowledge of the API

Has written libraries that sit on top of the API to simplify frequently used tasks and to fill in gaps in the API

E.g. of API can be Java library, .net framework or the custom API for the application

frameworks

Has not used any framework outside of the core platform

Has heard about but not used the popular frameworks available for the platform.

Has used more than one framework in a professional capacity and is well-versed with the idioms of the frameworks.

Author of framework

2n (Level 0)

n2 (Level 1)

n (Level 2)

log(n) (Level 3)

Comments

requirements

Takes the given requirements and codes to spec

Come up with questions regarding missed cases in the spec

Understand complete picture and come up with entire areas that need to be speced

Able to suggest better alternatives and flows to given requirements based on experience

scripting

No knowledge of scripting tools

Batch files/shell scripts

Perl/Python/Ruby/VBScript/Powershell

Has written and published reusable code

database

Thinks that Excel is a database

Knows basic database concepts, normalization, ACID, transactions and can write simple selects

Able to design good and normalized database schemas keeping in mind the queries that’ll have to be run, proficient in use of views, stored procedures, triggers and user defined types. Knows difference between clustered and non-clustered indexes. Proficient in use of ORM tools.

Can do basic database administration, performance optimization, index optimization, write advanced select queries, able to replace cursor usage with relational sql, understands how data is stored internally, understands how indexes are stored internally, understands how databases can be mirrored, replicated etc. Understands how the two phase commit works.

Experience

2n (Level 0)

n2 (Level 1)

n (Level 2)

log(n) (Level 3)

Comments

languages with professional experience

Imperative or Object Oriented

Imperative, Object-Oriented and declarative (SQL), added bonus if they understand static vs dynamic typing, weak vs strong typing and static inferred types

Functional, added bonus if they understand lazy evaluation, currying, continuations

Concurrent (Erlang, Oz) and Logic (Prolog)

platforms with professional experience

1

2-3

4-5

6+

years of professional experience

1

2-5

6-9

10+

domain knowledge

No knowledge of the domain

Has worked on at least one product in the domain.

Has worked on multiple products in the same domain.

Domain expert. Has designed and implemented several products/solutions in the domain. Well versed with standard terms, protocols used in the domain.

Knowledge

2n (Level 0)

n2 (Level 1)

n (Level 2)

log(n) (Level 3)

Comments

tool knowledge

Limited to primary IDE (VS.Net, Eclipse etc.)

Knows about some alternatives to popular and standard tools.

Good knowledge of editors, debuggers, IDEs, open source alternatives etc. etc. For e.g. someone who knows most of the tools from Scott Hanselman’s power tools list. Has used ORM tools.

Has actually written tools and scripts, added bonus if they’ve been published.

languages exposed to

Imperative or Object Oriented

Imperative, Object-Oriented and declarative (SQL), added bonus if they understand static vs dynamic typing, weak vs strong typing and static inferred types

Functional, added bonus if they understand lazy evaluation, currying, continuations

Concurrent (Erlang, Oz) and Logic (Prolog)

codebase knowledge

Has never looked at the codebase

Basic knowledge of the code layout and how to build the system

Good working knowledge of code base, has implemented several bug fixes and maybe some small features.

Has implemented multiple big features in the codebase and can easily visualize the changes required for most features or bug fixes.

knowledge of upcoming technologies

Has not heard of the upcoming technologies

Has heard of upcoming technologies in the field

Has downloaded the alpha preview/CTP/beta and read some articles/manuals

Has played with the previews and has actually built something with it and as a bonus shared that with everyone else

2n (Level 0)

n2 (Level 1)

n (Level 2)

log(n) (Level 3)

Comments

platform internals

Zero knowledge of platform internals

Has basic knowledge of how the platform works internally

Deep knowledge of platform internals and can visualize how the platform takes the program and converts it into executable code.

Has written tools to enhance or provide information on platform internals. For e.g. disassemblers, decompilers, debuggers etc.

books

Unleashed series, 21 days series, 24 hour series, dummies series…

Code Complete, Don’t Make me Think, Mastering Regular Expressions

Design Patterns, Peopleware, Programming Pearls, Algorithm Design Manual, Pragmatic Programmer, Mythical Man month

Structure and Interpretation of Computer Programs, Concepts Techniques, Models of Computer Programming, Art of Computer Programming, Database systems , by C. J Date, Thinking Forth, Little Schemer

blogs

Has heard of them but never got the time.

Reads tech/programming/software engineering blogs and listens to podcasts regularly.

Maintains a link blog with some collection of useful articles and tools that he/she has collected

Maintains a blog in which personal insights and thoughts on programming are shared



同時又引用Dreyfus Model

Dreyfus model德雷福斯模型研究人類如何學習、獲取技能,提出重新手到專家的 5 個階段:

  • 新手 Novice
  • 高級新手 Advanced Beginner
  • 勝任者 Competent
  • 精通者 Proficient
  • 專家 Expert

爲了便於理解,Eraut 勞特將不一樣階段的特徵總結以下:

一、新手 Novice

  • 嚴格遵照規則或計劃
  • 幾乎沒法感知情境
  • 沒法酌情判斷

二、高級新手 Advanced Beginner

  • 依賴基於屬性或不一樣側面的行動準則
  • 情境感知依然有限
  • 對工做的不一樣方面,分開處理而且給予同等重要性

三、勝任者 Competent

  • 能應對多線程活動或豐富的信息量
  • 能從長期目標角度(至少部分)審視行動
  • 有意識、刻意地制定計劃
  • 將流程標準化和常規化

四、精通者 Proficient

  • 從總體把握全局,而不是觀察各個方面
  • 瞭解情境中最重要的事
  • 感知情境與正常模式的誤差
  • 決策愈來愈輕鬆
  • 使用原則(maxims)指導行動,其含義因狀況而異

五、專家 Expert

  • 再也不依賴規則、行動準則、原則
  • 基於深入、潛默的直覺把握情境
  • 出現新狀況或發生問題才使用分析法
  • 看到將來可能的願景



今天先到這兒,但願對您技術領導力, 企業管理,物聯網,  系統架構設計與評估,團隊管理, 項目管理, 產品管理,團隊建設 有參考做用 , 您可能感興趣的文章:
2017-2018年Scrum狀態調查報告
2016年測試狀態調查
2017年IT行業測試調查報告
項目管理-習慣發生範圍變動
前端性能覈對表Checklist-2018
大型電商互聯網性能優化案例
國際化環境下系統架構演化
微服務架構設計
視頻直播平臺的系統架構演化
微服務與Docker介紹
Docker與CI持續集成/CD
互聯網電商購物車架構演變案例
互聯網業務場景下消息隊列架構
互聯網高效研發團隊管理演進之一
消息系統架構設計演進
互聯網電商搜索架構演化之一
企業信息化與軟件工程的迷思
企業項目化管理介紹
軟件項目成功之要素
人際溝通風格介紹一
精益IT組織與分享式領導
學習型組織與企業
企業創新文化與等級觀念
組織目標與我的目標
初創公司人才招聘與管理
人才公司環境與企業文化
企業文化、團隊文化與知識共享
高效能的團隊建設
項目管理溝通計劃
構建高效的研發與自動化運維
某大型電商雲平臺實踐
互聯網數據庫架構設計思路
IT基礎架構規劃方案一(網絡系統規劃)
餐飲行業解決方案之客戶分析流程
餐飲行業解決方案之採購戰略制定與實施流程
餐飲行業解決方案之業務設計流程
供應鏈需求調研CheckList
企業應用之性能實時度量系統演變

若有想了解更多軟件設計與架構, 系統IT,企業信息化, 團隊管理 資訊,請關注個人微信訂閱號:

MegadotnetMicroMsg_thumb1_thumb1_thu[2]

做者:Petter Liu
出處:http://www.cnblogs.com/wintersun/ 本文版權歸做者和博客園共有,歡迎轉載,但未經做者贊成必須保留此段聲明,且在文章頁面明顯位置給出原文鏈接,不然保留追究法律責任的權利。 該文章也同時發佈在個人獨立博客中-Petter Liu Blog。

相關文章
相關標籤/搜索