I am Kun !
-
NodeJS Mongoose
Quick note about Mongoose. Code demo
-
AngularJS Form
AngularJS provides a small and well-defined set of constructs that make standard form-based operations easier. For a form, we should consider three points:
-
Spring SpEL
Quick note after learning Spring SpEL. Code Demo
-
Spring Beans Autowire
This is quick note after learning Spring autowire.
-
Hibernate Session
Session interface is a single threaded object between Java application and the persistence layer. Session opens a single database connection when it is created, and holds onto it until the session is closed. It is mainly to offer CRUD operations on the persistent object which is loaded by Hibernate from the database.
-
Struts errors and messages from action
I had a problem today when developing a login system to learn struts. How to transfer easily the error and messages from action, and show them on jsp pages.
-
Struts OGNL
OGNL stands for Object Graph Navigation Language.
-
Adapter Pattern
Adapter Pattern
-
JDBC Guide
JDBC stands for Java Database Connectivity. It is a standard Java API for database-independent connectivity between the Java programming language and a wide range of databases.
-
Java Static Blocks Loading Order
Java Static Blocks Loading Order