Spring cloud:支付微服务-支付
环境
- spring cloud Edgware.SR6
- jdk 7
- sts 4.6.0
- mysql 5.7
背景
搭建支付微服务的环境。
搭建步骤
数据层
package jiangbo.springcloud.dao;
import java.util.List;
import org.springframework.jdbc.core.BeanPropertyRowMapper;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.jdbc.core.namedparam.BeanPropertySqlParameterSource;
import org.springframework.jdbc.core.simple.SimpleJdbcInsert;
import org.springframework.stereotype.Repository;
import jiangbo.springcloud.entity.PaymentInfo;
@Repository
public class PaymentDaoImpl implements PaymentDao {
private static final String QUERY_ALL_PAYMENT_SQL = "select * from payment_info";
private static final String QUERY_PAYMENT_BY_ID_SQL = QUERY_ALL_PAYMENT_SQL + " where id = ?";
private static final RowMapper<PaymentInfo> ROW_MAPPER = new BeanPropertyRowMapper<>(PaymentInfo.class);
private final JdbcTemplate jdbcTemplate;
public PaymentDaoImpl(JdbcTemplate jdbcTemplate) {
this.jdbcTemplate = jdbcTemplate;
}
@Override
public List<PaymentInfo> queryAllPayments() {
return jdbcTemplate.query(QUERY_ALL_PAYMENT_SQL, ROW_MAPPER);
}
@Override
public long insertPaymentInfo(PaymentInfo paymentInfo) {
paymentInfo.setStatus("SUCCESS");
return new SimpleJdbcInsert(jdbcTemplate)
.withTableName("payment_info")
// 指定主键
.usingGeneratedKeyColumns("id")
// 更新的列
.usingColumns("order_id", "amount", "status")
// 参数
.executeAndReturnKey(new BeanPropertySqlParameterSource(paymentInfo)).longValue();
}
@Override
public PaymentInfo queryPaymentInfo(long id) {
return jdbcTemplate.queryForObject(QUERY_PAYMENT_BY_ID_SQL, ROW_MAPPER, id);
}
}
服务层
package jiangbo.springcloud.service.impl;
import java.util.List;
import org.springframework.stereotype.Service;
import jiangbo.springcloud.dao.PaymentDao;
import jiangbo.springcloud.entity.PaymentInfo;
import jiangbo.springcloud.service.PaymentService;
@Service
public class PaymentServiceImpl implements PaymentService {
private final PaymentDao paymentDao;
public PaymentServiceImpl(PaymentDao paymentDao) {
this.paymentDao = paymentDao;
}
@Override
public List<PaymentInfo> queryAllPayments() {
return paymentDao.queryAllPayments();
}
@Override
public PaymentInfo insertPaymentInfo(PaymentInfo paymentInfo) {
long id = paymentDao.insertPaymentInfo(paymentInfo);
return paymentDao.queryPaymentInfo(id);
}
}
控制层
package jiangbo.springcloud.controller;
import java.util.List;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import jiangbo.springcloud.entity.PaymentInfo;
import jiangbo.springcloud.service.PaymentService;
@RestController
@RequestMapping("/payment")
public class PaymentContrller {
private final PaymentService paymentService;
public PaymentContrller(PaymentService paymentService) {
this.paymentService = paymentService;
}
@PostMapping
public PaymentInfo newPaymentInfo(@RequestBody PaymentInfo paymentInfo) {
return paymentService.insertPaymentInfo(paymentInfo);
}
@GetMapping
public List<PaymentInfo> allPayemtns() {
return paymentService.queryAllPayments();
}
}
验证
使用命名进行数据的新增,看到如下的结果,则证明成功:
curl -H "Content-Type: application/json" -X POST --data '{"orderId":8,"amount":"8.88"}', http://localhost:4420/payment
{"id":2,"orderId":8,"amount":"8.88","status":"SUCCESS","createTime":1587224718000}
分类:
Spring
, Spring cloud
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!