13 lines
295 B
Java
13 lines
295 B
Java
|
|
package com.baeldung.web;
|
||
|
|
import com.baeldung.domain.Book;
|
||
|
|
import org.springframework.roo.addon.web.mvc.controller.annotations.config.RooJsonMixin;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* = BookJsonMixin
|
||
|
|
TODO Auto-generated class documentation
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
@RooJsonMixin(entity = Book.class)
|
||
|
|
public abstract class BookJsonMixin {
|
||
|
|
}
|