Please enable JavaScript.
Coggle requires JavaScript to display documents.
Integro technology (IT knowledge (SQL tunning (writing sql (avoid using…
Integro technology
IT knowledge
-
-
SQL tunning
Use index for searching, ordering columns, foreign key, primary key
Use partition for large data table: partition by range, by hash, by list or composite partition : range - hash, range - list
-
-
writing sql
-
-
avoid use not in, != , not between on index column because it make index column uneffective
avoid select all colums, just select the needed columns
-
Web development tech
MVC architech
-
-
controller: handle the request from user(client), work with model to render the view with correct data, and response the view to user. It also can call some business logic to manipulate the state of model
Struts 1
View: JSP
struts tags
html: text, option, file, select, form
-
logic: equal, notequal, null, greathan...
-
Controller
-
-
-
return new ActionForward(path, redirect) to foward the result page or Actionmapping to map name to path
-
-
Spring
-
-
-
Autowried
Component: declare for the auto scan of spring can find and add to the context
Reposity: the same component but it specially for DAO class, to hand Exception and delegate transaction management for Srping by anotation Transaction
-
-
-
-