- 博客(5)
- 资源 (1)
- 收藏
- 关注
原创 Java 股票K线逻辑 代码
package com.gustoboard.bm.rtdg.service.impl;import com.gustoboard.bm.rtdg.mapper.TradeMapper;import com.gustoboard.bm.rtdg.model.KTrade;import com.gustoboard.bm.rtdg.model.Market;import com.gust...
2018-07-19 14:20:47
3215
3
原创 gmail 邮箱发送邮件 连接超时解决
//源生发送html 邮件 @Autowired private JavaMailSender mailSender; /** * 发送html邮件 * * @param to 发送的用户邮箱 * @param subject 标题 * @param content 正文 */ @Overri...
2018-07-19 13:48:09
6109
3
原创 Nexmo 短信平台接口 遇到的坑
前段时时间根据公司要求运用国外短信平台Nexmo来给发送短信所遇到的坑总结!直接 上代码// accountSid authToken 密钥AuthMethod auth = new TokenAuthMethod(accountSid, authToken); NexmoClient client = new NexmoClient(auth); SmsSubmissionR...
2018-07-19 13:38:40
6783
3
原创 接口和抽象类的理解 和因该在什么时候用到!
1.首先说一下他们的理论区别a:abstract是”is a”的关系(’是什么‘的意思,例:树是植物 单继承关系),interface是”like a”的关系(“像什么”的意思,例:我跟我爸爸长的很像,我兄弟跟我爸爸长的也很像 多继承关系);b、抽象类被子类继承,接口被类实现.c、抽象类中可以做方法申明,也可以做方法实现(里面写实现可以用private,但是用抽象类修饰的方法不能
2015-08-19 15:42:39
1827
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人