Hi,
Thank you so much for sharing.
I was going to implement something like this today.
look at workaround about `size` field
~.domain.Icon roo> field numbert --fieldName size -
Command...
Type: Posts; User: piskovyy; Keyword(s):
Hi,
Thank you so much for sharing.
I was going to implement something like this today.
look at workaround about `size` field
~.domain.Icon roo> field numbert --fieldName size -
Command...
The bug there:
public class StringHttpMessageConverter extends AbstractHttpMessageConverter<String> {
public static final Charset DEFAULT_CHARSET = Charset.forName("ISO-8859-1");
Why is...
Fixed by
HttpHeaders responseHeaders = new HttpHeaders();
responseHeaders.add("Content-Type", "text/html; charset=utf-8");
return new ResponseEntity<String>(check.toJson(), responseHeaders,...
Hi,
I have a problem with unicode for json.
I've created test project:
project --topLevelPackage com.test.roo --projectName jsonunicode --java 6
persistence setup --provider HIBERNATE...
OK, thanks
I'll try to make it.
--
Regards,
Andriy
Hi!
I try to add russian language by the command:
addon create i18n --topLevelPackage com.mif.server --locale ru --messageBundle i18n/messages_ru.properties
and get the following:
Command...