Re: About introduce Lombok to service comb

2018-08-27 Thread Willem Jiang
work easily in their projects. > > > Although java-chassis do not use lombok, if you find something we did > make integrate lombok not possible, please feel free to point out. > > > -- 原始邮件 -- > 发件人: "赵俊"; > 发送时间: 2018年8月23日(星期四

Re: About introduce Lombok to service comb

2018-08-27 Thread yhs0092
a bean specification or work together with Json libraries. (Sorry I do not have the details) -- 原始邮件 -- 发件人: "willem.jiang"; 发送时间: 2018年8月22日(星期三) 下午3:40 收件人: "dev"; 主题: Re: About introduce Lombok to service comb We could specify it in the e

Re: About introduce Lombok to service comb

2018-08-27 Thread wjm wjm
er. > > > > > > > > > > > > So you can see from java-chassis, we do not depend some very good > > > frameworks like spring, spring boot components and use old fashioned > SPI > > > mechanism. But users can use these framework easily in their proj

Re: About introduce Lombok to service comb

2018-08-26 Thread Yang Bo
-chassis do not use lombok, if you find something we did > > make integrate lombok not possible, please feel free to point out. > > > > > > > > > -- 原始邮件 -- > > > 发件人: "赵俊"; > > > 发送时间: 201

Re: About introduce Lombok to service comb

2018-08-26 Thread Willem Jiang
ething we did > make integrate lombok not possible, please feel free to point out. > > > > > > ------ 原始邮件 -- > > 发件人: "赵俊"; > > 发送时间: 2018年8月23日(星期四) 上午10:39 > > 收件人: "dev@servicecomb.apache.org"; > > >

Re: About introduce Lombok to service comb

2018-08-25 Thread 赵俊
hing we did make > integrate lombok not possible, please feel free to point out. > > > -- 原始邮件 -- > 发件人: "赵俊"; > 发送时间: 2018年8月23日(星期四) 上午10:39 > 收件人: "dev@servicecomb.apache.org"; > > 主题: Re: About introduce Lomb

?????? About introduce Lombok to service comb

2018-08-24 Thread bismy
. -- -- ??: ""; : 2018??8??23??(??) 10:39 ??: "dev@servicecomb.apache.org"; : Re: About introduce Lombok to service comb Hi we often use following lombok annotations, it makes our code clean especiall

Re: About introduce Lombok to service comb

2018-08-22 Thread 赵俊
some know issues > regarding to java bean specification or work together with Json libraries. > (Sorry I do not have the details) > > > -- 原始邮件 -- > 发件人: "willem.jiang"; > 发送时间: 2018年8月22日(星期三) 下午3:40 > 收件人: "dev"; >

?????? About introduce Lombok to service comb

2018-08-22 Thread bismy
I do not have the details) -- -- ??: "willem.jiang"; : 2018??8??22??(??) 3:40 ??: "dev"; : Re: About introduce Lombok to service comb We could specify it in the environment setup document. @Ch

Re: About introduce Lombok to service comb

2018-08-22 Thread Willem Jiang
We could specify it in the environment setup document. @Cherry Could you share the experience of Lombok usage in sharding sphere? Willem Jiang Twitter: willemjiang Weibo: 姜宁willem On Wed, Aug 22, 2018 at 2:13 PM, wjm wjm wrote: > everyone clone our code, if need to load by IDE, must install

Re: About introduce Lombok to service comb

2018-08-22 Thread wjm wjm
everyone clone our code, if need to load by IDE, must install the IDE plugin, i don't think it's a good idear. 2018-08-22 12:33 GMT+08:00 Zheng Feng : > It looks good to me and the lombok supports the JDK 9 ? > > 2018-08-22 12:21 GMT+08:00 赵俊 : > > > Hi, Willem > > > > Lombok would not package

Re: About introduce Lombok to service comb

2018-08-22 Thread cherrylzhao
Hi, zheng feng Lombok support JDK 9 since 1.16.8, here is the Lombok changelog. https://www.projectlombok.org/changelog > On 22 Aug 2018, at 12:33 PM, Zheng Feng > wrote: > > It looks good to me and the lombok supports the

Re: About introduce Lombok to service comb

2018-08-21 Thread Zheng Feng
It looks good to me and the lombok supports the JDK 9 ? 2018-08-22 12:21 GMT+08:00 赵俊 : > Hi, Willem > > Lombok would not package into our service-comb jar, so there is no license > issue. > We can set the maven scope is “provide”, it just enhance the java code > byte in compile step. > > > > >

Re: About introduce Lombok to service comb

2018-08-21 Thread 赵俊
Hi, Willem Lombok would not package into our service-comb jar, so there is no license issue. We can set the maven scope is “provide”, it just enhance the java code byte in compile step. > On 21 Aug 2018, at 10:57 PM, wjm wjm wrote: > > in fact, getter / setter and so on can be generated by

Re: About introduce Lombok to service comb

2018-08-21 Thread wjm wjm
in fact, getter / setter and so on can be generated by IDE(IntelliJ / Eclipse) simply 2018-08-21 22:34 GMT+08:00 Willem Jiang : > Hi Cherry, > > Thanks for proposal, it can save us lot of time when we write the java bean > class. > As lombok is using MIT license, I don't think we could have the

Re: About introduce Lombok to service comb

2018-08-21 Thread Willem Jiang
Hi Cherry, Thanks for proposal, it can save us lot of time when we write the java bean class. As lombok is using MIT license, I don't think we could have the license issue here. I think we can start it from saga project, it's up to java-chassis to check if it want to use it. @Team Any thought?

About introduce Lombok to service comb

2018-08-20 Thread cherrylzhao
Hi, all Lombok can simplify our work for creating java entity. Using Lombok annotation, it will enhance java byte code within compile step. We can use @Getter @Setter @Log @RequiredArgsConstructor to define our model simplify. See more detail from https://projectlombok.org