Perguntas com a marcação «spring-mvc»

90
Serializando enums com Jackson

Eu tenho um Enum descrito abaixo: public enum OrderType { UNKNOWN(0, "Undefined"), TYPEA(1, "Type A"), TYPEB(2, "Type B"), TYPEC(3, "Type C"); private Integer id; private String name; private WorkOrderType(Integer id, String name) { this.id = id; this.name = name; } //Setters,...

89
Como funciona a anotação Spring @ResponseBody?

Eu tenho um método que é anotado da seguinte maneira: /** * Provide a list of all accounts. */ // TODO 02: Complete this method. Add annotations to respond // to GET /accounts and return a List<Account> to be converted. // Save your work and restart the server. You should get JSON results...