Pytania oznaczone «spring»

90
Który artefakt dla org.springframework.mail?

Chciałbym skorzystać ze wsparcia wiosennego do wysyłania maili. Mój projekt jest zbudowany za pomocą maven-2 i używam spring-core 2.5.5. Próbowałem poszukać w centralnym repozytorium maven artefaktów do umieszczenia w moim pom.xml, a jedyne, jakie znalazłem, to wsparcie wiosny . Problem w tym,...

90
Serializacja wyliczeń z Jacksonem

Mam Enum opisane poniżej: 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
Jak działa adnotacja Spring @ResponseBody?

Mam metodę, która jest opisana w następujący sposób: /** * 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...

88
Co oznacza adnotacja @Valid wiosną?

W poniższym przykładzie ScriptFileparametr jest oznaczony @Validadnotacją. Co robi @Validadnotacja? @RequestMapping(value = "/scriptfile", method = RequestMethod.POST) public String create(@Valid ScriptFile scriptFile, BindingResult result, ModelMap modelMap) { if (scriptFile == null) throw...