57551f33a0
formatting applied. Added POM, java and resources folders.
16 lines
518 B
Java
16 lines
518 B
Java
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;
|
|
|
|
/**
|
|
* = BooksItemThymeleafController
|
|
TODO Auto-generated class documentation
|
|
*
|
|
*/
|
|
@RooController(entity = Book.class, type = ControllerType.ITEM)
|
|
@RooThymeleaf
|
|
public class BooksItemThymeleafController {
|
|
}
|