springboot能用python吗_Python与springboot的对接

使用springboot建立一个web demo ,其中有一个接口如下,为了测试加了一个参数 type:

@Autowired

private JdbcTemplate jdbcTemplate;

@RequestMapping(value = "/getCountry", method = RequestMethod.GET)

// @ResponseBody

public List> getUser(@RequestBody Map reqMap) {

String type = reqMap.get("type").toString();

switch (type) {

case "test":

List> jj = new ArrayList<>();

Map jd = new HashMap<>();

jd.put("123", "test");

jj.add(jd);

return jj;

default:

String sql = "select * from country";

List> list = jdbcTemplate.queryForList(sql);

return list;

}

}

如果使用Python 可能不会使用这么多的代码,但有时为了性能不得不做出让步,那就用Python来开发页面以及不太需要运行速度的模块:

rep = requests.get(url='http://localhost:8080/getCountry', json={"type": "test"})

print(

json.loads(rep.text))

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值