
web
辞长夜
今天你码代码了麽.
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
IDEA配置Tomcat
一、 下载Tomcat. ①进入官网下载所需的Tomcat版本:http://tomcat.apache.org/ ②apache-tomcat-9.0.8资源传送门:https://download.youkuaiyun.com/download/ai071721s/10581983 (windows ×64) 二、 IDEA配置Tomcat: 见博客:https://www.cnblog...原创 2018-08-03 16:32:54 · 260 阅读 · 0 评论 -
java错误:编码GBK 的不可映射字符
转自/liuyazhuang:https://blog.youkuaiyun.com/l1028386804/article/details/46583279转载 2018-08-03 16:36:12 · 330 阅读 · 0 评论 -
Java web项目sql语句参数问题
做课程设计时候,由于要实现"商品加入购物车后库存自动减少"功能,写了个函数update_stock。 里面有用到sql语句,同时函数参数包括(num,ID),即购买数量和商品ID 第一次写的sql语句如下: String sql = "update items set number=number-num where id='ID';"; (这是错误的) (number为表items...原创 2018-06-21 19:37:50 · 1291 阅读 · 0 评论