Files
java-tutorials/roo/src/main/java/com/baeldung/web/BooksCollectionThymeleafController.java
T

16 lines
536 B
Java
Raw Normal View History

2017-04-06 01:20:04 +01:00
package com.baeldung.web;
import com.baeldung.domain.Book;
import org.springframework.roo.addon.web.mvc.controller.annotations.ControllerType;
import org.springframework.roo.addon.web.mvc.controller.annotations.RooController;
import org.springframework.roo.addon.web.mvc.thymeleaf.annotations.RooThymeleaf;
/**
* = BooksCollectionThymeleafController
TODO Auto-generated class documentation
*
*/
@RooController(entity = Book.class, type = ControllerType.COLLECTION)
@RooThymeleaf
public class BooksCollectionThymeleafController {
}