估计会暂时搁置更新, 先发一波.
中文编程知乎专栏相关文章:
在线演示, 访问 http://74.91.17.250:8090/?term=List 返回:
[
{
id: 3,
英文术语: "List",
中文术语: "列表"
}
]
部分源码:
@Entity
public class 词条 {
@Id
private long id;
private String 英文术语;
private String 中文术语;
public 词条() {
}
public 词条(long id, String 英文术语, String 中文术语) {
this.id = id;
this.英文术语 = 英文术语;
this.中文术语 = 中文术语;
}
public long getId() {
return id;
}
public String get 中文术语() {
return 中文术语;
}
public String get 英文术语() {
return 英文术语;
}
}
@RestController
public class 词典控制器 {
private static final Logger 笔录 = LoggerFactory.getLogger(词典控制器.class);
@Autowired
private 词库接口 词库;
@GetMapping("/")
@ResponseBody
public List<词条> 取词条(@RequestParam(name = "term", required = false, defaultValue = "") String 英文术语) {
笔录.info("输入: " + 英文术语);
return 词库.findBy 英文术语(英文术语);
}
}
1
airfling 2018-09-02 12:06:32 +08:00 via Android
中英文混合不怕出现编码问题吗
|
2
xuanwu OP @airfling 还没有碰到在语言 /框架支持时, 由于使用中文命名出现的问题. 如果发现, 欢迎到 https://github.com/program-in-chinese/overview/issues 提.
|
4
xuanwu OP @K1W1 之前有些关于输入效率的探讨. 小结在知乎专栏文章"对在代码中使用中文命名的质疑与回应"( https://zhuanlan.zhihu.com/p/30529835 ), "中文输入太慢, 降低开发效率"一节
|