Sau đây là một số annotation
trong Spring Framework cần biết:
@Autowired
: Tự động liên kết các bean
được sử dụng trong các class
với các bean
được Spring Container sinh ra và quản lý.
// @org.springframework.beans.factory.annotation.Autowired
@Service
public class BookServiceImpl implements BookService {
@Autowired
private BookDao bookDao;
@Autowired
private CustomerDao customerDao;
...
}
@Scope
: mặc định trong Spring, hầu hết scope
phổ biến cho các autodetected components
là singleton
(singleton
: Với mỗi bean
, Spring IoC Container chỉ tạo duy nhất một đối tượng), để thay đổi phạm vi ta sử dụng @Scope annotation
).
// @org.springframework.context.annotation.Scope
@Component
@Scope("request")
public class ContactResource {
...
}
@Component
: dùng để đánh dấu một class sẽ được tạo bean
// @org.springframework.stereotype.Component
@Component
public class ContactResource {
...
}
@Repository
: dùng để đánh dấu các lớp Repository
hoặc Dao
của Spring. Mọi truy cập dữ liệu logic tới cơ sở dữ liệu sẽ đặt trong các lớp này.
// @org.springframework.stereotype.Repository
@Repository
public class BookDaoImpl implements BookDao {
...
}
@Service
: dùng để đánh dấu các lớp Service
. Tất cả xử lý nghiệp vụ logic sẽ đặt trong các lớp Service
.
// @org.springframework.stereotype.Service
@Service
public class BookServiceImpl implements BookService {
...
}
@Transactional
: dùng để đánh dấu các class
có sử dụng đến transaction
, các transaction
này sẽ được trao cho Spring quản lý.
// @org.springframework.transaction.annotation.Transactional
@Service
@Transactional(readOnly = true)
public class BookServiceImpl implements BookService {
@Autowired
private BookDao bookDao;
@Transactional
public Book findByName(String name) {
Book book = bookDao.findByName(name);
return book;
}
...
}
@Controller
: dùng để đánh dấu lớp Controller
// @org.springframework.stereotype.Controller
@Controller
public class LoginController {
...
}
@RequestMapping
: dùng để ánh xạ tới các URL
lên toàn bộ một class
hay một phương thức xử lý riêng. Thông thường dùng để ánh xạ một request path
(hoặc path pattern
)
tới một controller
.
// @org.springframework.web.bind.annotation.RequestMapping
@Controller
@RequestMapping("/login")
public class LoginController {
@Autowired
private UserService userService;
...
}
@RequestParam
: dùng để gán một request parameter
vào một parameter
của phương thức.
// @org.springframework.web.bind.annotation.RequestParam
@Controller
@RequestMapping("/user")
public class LoginController {
@RequestMapping("/login")
public String listCompanies(@RequestParam String username, @RequestParam String password) {
if(username.equals("admin") && password.equals("mypass")){
return "welcome";
} else {
return "login?login=fail";
}
}
...
}
@InitBinder
: dùng để đánh dấu một phương thức có tùy biến các ràng buộc dữ liệu.
@SessionAttribute
: Chỉ định một modelAttribute
sẽ được lưu trong session
.
@PreAuthorize
: được dùng để cho phép hoặc từ chối sử dụng một phương thức. Trong ví dụ dưới đây, chỉ những đối tượng user
có quyền Admin
mới có thể xóa được một đối tượng contact
:
// @org.springframework.security.access.prepost.PreAuthorize
@Transactional
@PreAuthorize("hasRole('ROLE_ADMIN')")
public void removeContact(int id) {
contactDao.removeContact(id);
}