spring boot发送短信服务

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.MediaType;
import org.springframework.stereotype.Service;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.client.RestTemplate;

import java.text.SimpleDateFormat;
import java.util.Date;

/**
* Created by jalen on 17-6-1.
*/
@Service
public class SmsService {
    @Autowired
    RestTemplate restTemplate;
    @Value("${sms.username}")
    String username;
    @Value("${sms.password}")
    String password;
    @Value("${sms.url}")
    String url;

    public String sendMsg(String phoneNum,String text){
        if (text.getBytes().length<=500){
            String postUrl = url + "xxxx";

            HttpHeaders headers = new HttpHeaders();
            headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);

            MultiValueMap<String,String> p = new LinkedMultiValueMap<>();
            p.add("userId",username);
            p.add("password",password);
            p.add("pszMobis",phoneNum);
            p.add("pszMsg",text);

            HttpEntity< MultiValueMap<String,String>> entity = new HttpEntity< MultiValueMap<String,String>>(p,headers);

            String result = restTemplate.postForObject(postUrl,entity,String.class);

            return result;
        }else {
            String result = "短信内容过长,请重新编辑";
            return result;
        }
    }

}


2.看注入的属性RestTemplate对象实在哪里实例化的,这里实在spring boot入口Application处设置的bean

import com.xxx.repository.support.CustomRepository;
import com.ulisesbocchio.jasyptspringboot.annotation.EnableEncryptableProperties;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.Bean;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import org.springframework.web.client.RestTemplate;

@SpringBootApplication
//@EnableEncryptableProperties    //启用配置文件加密Encrypt
@EnableJpaAuditing
//@EnableCaching      //启用Ehcache缓存
@EnableJpaRepositories(repositoryBaseClass = CustomRepository.class)
public class Application {

  @Bean
  RestTemplate restTemplate(){
      return new RestTemplate();
  }

  public static void main(String[] args) {
      SpringApplication.run(Application.class, args);
  }
}


3.@Value("${sms.username}")中值的获取,在配置文件yml中设置的
sms:
  username: xxxx
  password: xxxx
  url: http://xx.xx.xx.xx:8086/xx/xx.asmx/


  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Jalen备忘录

谢谢~~

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值