16 tháng 1, 2016

Một số thẻ trong HTML5

  1. Thẻ <site>
  2. Thẻ <site>: Xác định tên của một tác phẩm (ví dụ: một quyển sách, một bài hát, một bức tranh, một chương trình truyền hình...)

    <img src="https://cdn-images-1.medium.com/max/600/1*Yja7DqjrBPJuHaw1QZ6iwg.jpeg" width="220" height="277" alt="The Scream">
    <p><cite>The Scream by Edward Munch. Painted in 1893.</p>
    

    Kết quả:

    The Scream

    The Scream by Edward Munch. Painted in 1893.

  3. Thẻ <mark>
  4. Thẻ <mark>: Sử dụng khi muốn làm nổi bật một đoạn văn bản

    <p>Do not forget to buy <mark>milk</mark> today.</p>

    Kết quả:

    Do not forget to buy milk today.

8 tháng 1, 2016

Một số annotation trong Spring

Sau đây là một số annotation trong Spring Framework cần biết:

Spring Core annotation

@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 componentssingleton (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 {
...
}

Stereotyping Annotations

@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 {
...
}

Transaction Annotations

@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;
  }
  ...
}

Spring MVC Annotation

@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.

Spring Security Annotation

@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);
}