摘要:
在使用FileWatcher的时候,默认将less文件翻译的css文件放到与less文件同一目录下,但通过将filewatcher中的参数更改为: --no-cache --update $FileName$:$FileParentDir$/css/$FileNameWithoutExtension 阅读全文
摘要:
1 public void insert() { 2 String sql ="insert into datas (user, password) values (?, ?)"; 3 int cyc = jdbcTemplate.update(sql, "cyc", 256); 4 System. 阅读全文
摘要:
在练习使用JDBC操作Mysql数据库时,通过下面代码完成对MySQL中一表的数据增加操作: do { System.out.println("请输入用户名"); user = sc.nextLine(); System.out.println("请输入密码"); password =sc.next 阅读全文