I hereby claim:
- I am hatefpalizgar on github.
- I am hatefpalizgar (https://keybase.io/hatefpalizgar) on keybase.
- I have a public key ASAYuVdh3g0JCMQH4SDrZIdwxMG7vYz4ZpO6W_n39G0XUgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
package com.luv2code.springdemo.entity; | |
import javax.persistence.Column; | |
import javax.persistence.Entity; | |
import javax.persistence.GeneratedValue; | |
import javax.persistence.GenerationType; | |
import javax.persistence.Id; | |
import javax.persistence.Table; | |
@Entity |
Car yaris = new Toyota(); | |
Car focus = new Ford(); | |
Car azera = new Hyundai(); | |
Renault megane = new Renault(); | |
// create manager object | |
Manager manager = new Manager(); | |
// now manager calls the technician to start repairing | |
hatef.repair(yaris); // hatef is able to repair any Car instances | |
hatef.repair(focus); // focus is a Car instance | |
hatef.repair(azera); // azera is a Car instance |
<script>
$.ajax({
url: 'URL',
type: '',
cache: false,
data: {
//Dữ liệu gửi đi
},
success: function(data){
<script> | |
$("#btnSearch").on('click',function () { | |
$("#btnSearch").hide(); | |
}); | |
</script> |
https://www.tutorialspoint.com/hibernate/hibernate_quick_guide.htm | |
Sr.No. Session Methods & Description | |
1 | |
Transaction beginTransaction() | |
Begin a unit of work and return the associated Transaction object. | |
2 | |
void cancelQuery() |
The purpose of design is to allow you to do design later, and it's primary goal is to reduce the cost of change.
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.