Skip to main content

STRUTS

  1. struts introduction
  2. MVC Architecture 
  3. model -1 &model -2 architecture 
  4. introduction some design patterns  front controller & application controller etc 
  5. struts Architecture 
  6.  struts Frame work flow 
  7.  developing basic struts apps 
  8.  working with form beans 
  9. applying serverside validations to our form bean apps 
  10. validation frame work 
  11.  internationalization 
  12. declarating exception handling 
  13. working with struts custom pluging 
  14.  built -in action 
  15.  forward action 
  16. include action 
  17. dis patch action 
  18. lookup dispatchaction 
  19. mapping  dispatch action 
  20. switch action 
  21. local action 

  22. connection pooling 
  23. tiles frame work 
  24. struts hibernate 
  25. struts + ejb3 +JPA
  26.  struts +spring 
  27.  file uploading 
  28.  pagination 
  29.   deploying  struts  apps into  various enterprize apps 

  30.  developing struts apps using my Eclipse & ides 
  31.  struts 2

Popular posts from this blog

java script

This Javascript tutorial is for people with little or no experience with programming. It covers these topics: The Definition of Javascript The History of Javascript Java Versus Javascript Learning Javascript A Basic JavaScript Example The Definition of Javascript JavaScript is a type of programming language that works with HTML to make web pages more interactive. For instance, if you had a trivia quiz on a web page you could use JavaScript to check the answers. Javascript is limited. It is not a full-featured programming language like Java or C++. Think of the JavaScript language as a simple, easy-to-use programming language that has only the features necessary to make web pages interactive. The History of Javascript When the Web was first created in the early 1990s all web pages were static. In other words there were no popup windows, no shopping carts, no flying thingy's etc. Pages just stayed still. At that time Netscape Navigator and Internet Explorer were the top browsers. Net...

php super global variables examples | super global variables in php example

Super global variables are special type variables in php. We can access them from any place with in the application. $_GET :-The $_GET is a super global variable. By using this super global variable we can get the posted values of GET method. $_GET super global variable by default, is the only way that we can access variables passed via GET method. $_POST :-The $_POST is a super global variable. By using this super global variable we can get the posted values of POST method. When ever we can submit the form get are post method to get the form values $_REQUEST. $_SESSION :   $_SESSION is a super global variable. By using this super global variable we can create a SESSION and we read the SESSION .SESSION are used to maintain the state of the application. $_COOKIE : $_COOKIE is a super global variable. By using this is super global variable stores information passed into the script through HTTP cookies. $_ENV : $_ENV is a super global variable. By usi...

insert document in collection mongodb

 Insert document in collection Two types of insert Insert single records:  Insert multiple records Insert single records:    syntax:  db.collection.insertOne(    <document>,    {       writeConcern: <document>    } ) Example 1:  db.users.insertOne({"name":"ram","email":"ram@gmail.com"})  Example 2:  db.users.insertOne( [{"employee":{"name":"ram","email":"ram@gmail.com"}}] ) Insert multiple records:   syntax : db.Collection_name.insertMany( [<document 1>, <document 2>, …], {     writeConcern: <document>,     ordered: <boolean> }) Example:  db.users.insertMany([{"name":"ram","email":"ram@gmail.com"},{"name":"raju","email":"raju@gmail.com"}])