AstonTambor

Results 47 comments of AstonTambor

![20170122190555](https://cloud.githubusercontent.com/assets/20204491/22182037/da659874-e0d5-11e6-983d-ad71e9d76023.png) ![image](https://cloud.githubusercontent.com/assets/20204491/22182064/5db8ead2-e0d6-11e6-997b-c4645df9fa47.png) Request help Apache can use http: // ip / svn /. Access to resources, how to configure the Nginx? Thank you

@realJackSun spring boot 2.3.12.RELEASE ``` spring: application: name: demo profiles: active: dev #这段配置放nacos远程配置中 server: servlet: context-path: /demo nacos: config: bootstrap: enable: true auto-refresh: true server-addr: nacos.xxx.cn data-id: ${spring.application.name} namespace: ${spring.profiles.active}...

这是来自QQ邮箱的假期自动回复邮件。   您好,我最近正在休假中,无法亲自回复您的邮件。我将在假期结束后,尽快给您回复。

@jin-yufeng 这是兼容问题嘛

This method returns an array. How to convert it into an object? ``` redisJSON.get(key,User.class, new GetArgs().path("name", "age")) ``` @oshadmi

``` public class MusicData { private Integer type; private String title; private String author; } ``` ``` JReJSON client = new JReJSON(); client.set("MusicData", new MusicData().setTitle("test").setAuthor("http://")); //MusicData={title=test, author=http://} System.out.println(client.get("MusicData").toString()); //Object serialization...

@sazzad16 Can such a structure be converted into an entity object?

@oshadmi @sazzad16 When getting non-existent attributes, you should return null instead of throwing exceptions. In the actual use scenario, it is not friendly. What do you think?