问题遇到的现象和发生背景
springboot + JDBC 我想从数据库拿到我想要的值。我已经可以拿到全部值了,但是我只想获得其中的userpwd,只输出userpwd的值。以及为什么我的密码是123,但是结果却变成了B@647e9406。如何转码?
问题相关代码,请勿粘贴截图
package com.example.springboot.connection;
import jdk.nashorn.internal.objects.NativeDate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
import java.util.Map;
@RestController
public class JDBCConnection {
@Autowired
JdbcTemplate jdbcTemplate;
private NativeDate JSONSerializer;
@GetMapping("/userlist")
public void userlist(@RequestParam(value = "username", required = true) String username) {
String sql = "select * from userdate where username = " + username;
List<Map<String, Object>> maps = jdbcTemplate.queryForList(sql);
System.out.println(maps);
}
}
运行结果及报错内容
我的解答思路和尝试过的方法
我想要达到的结果
我只想获得其中的userpwd。以及密码解码回我设置的123