Difference between revisions of "Software Engineering"

From Jtkwiki
Jump to navigationJump to search
Line 15: Line 15:
 
* [[EJB]]
 
* [[EJB]]
 
* [[Struts]]
 
* [[Struts]]
* JavaScript
+
* JavaScript (aka ECMAScript)
 
** [https://developer.mozilla.org/en/A_re-introduction_to_JavaScript A Re-Introduction to JavaScript]
 
** [https://developer.mozilla.org/en/A_re-introduction_to_JavaScript A Re-Introduction to JavaScript]
 +
** [http://tools.ietf.org/html/rfc4329 RFC 4329]
 +
* [http://dev.w3.org/html5/websockets/ Web Sockets API]
  
 
== Other Technologies and Concepts ==
 
== Other Technologies and Concepts ==

Revision as of 12:27, 6 January 2010

Building Software


Software Architecture


Web Technologies

Other Technologies and Concepts

  • JavaSpaces
  • Hadoop Map / Reduce
  • Business Process Execution Language (BPEL) - "orchestration" of business processes
  • Representational State Transfer (REST)


Authentication

Notes

Agility really is a consequence of adequate modelling. For a system that provides behaviour without internally modelling the problem domain (aka Universe of Discourse etc.), accommodating a change of requirements will likely result in large scale changes in design and implementation. In contrast, if the system is based on a detailed and highly adequate model, the extent of changes in design and implementation caused by a requirements change will correspond closely to the extent of the requirement change itself. Thus, small changes in requirements can be accommodated in an agile manner.

Somewhat metaphorically, a system that provides required behaviour without adequate internal modelling is "brittle" like a hash: If one bit in the requirements (the input) changes, all bits in the system (the hash) are subject to change.

Reusability really reflects the adequacy of a model independently of the purpose (i.e. independently of the current set of requirements).

The real use of prototoypes is that the software developers get to engage with the problem domain in a symbolic manner. It is an added benefit that prototypes provide opportunity for clients (or other non-developer stakeholders) to get to see the developing system, but (contrary to a somewhat popular view), this is not the main benefit.

Rewriting from scratch may be a bad idea, some say it's a thing you should never do or consider it harmful