摘要: IDEA创建JavaWeb项目 1、首先创建java项目,然后右键项目,选择add framework support(添加模块)JavaEE模块; 2、接着在WEB-INF下创建classes,libs文件夹,接着修改模块里output path的路径改成classes文件夹的路径,接下来点击de 阅读全文
posted @ 2022-03-21 10:13 雪前 阅读(411) 评论(0) 推荐(0)
摘要: 简单的使用SpringBoot注解实现了增删改查操作 User类 /** * 用户类 */ public class User { private Integer id; //编号id private String username; //用户名 private String password; / 阅读全文
posted @ 2022-03-14 16:10 雪前 阅读(269) 评论(0) 推荐(0)
摘要: 首先打开setting,然后找到Editor——File Encodings里面修改。 阅读全文
posted @ 2022-03-06 13:41 雪前 阅读(58) 评论(0) 推荐(0)
摘要: springboot打jar包及运行方式 如果出现以下错误: [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Using 'UTF-8' encoding to copy filtered properties fil 阅读全文
posted @ 2022-03-05 11:55 雪前 阅读(357) 评论(0) 推荐(0)
摘要: layui开源模块化前端 UI 框架 可以访问国内镜像网站:https://www.layui.site/ ,速度会快一些。 阅读全文
posted @ 2022-02-27 19:04 雪前 阅读(248) 评论(0) 推荐(0)
摘要: @Insert("insert into user (username,password) values (#{username},#{password})")@Options(useGeneratedKeys = true, keyProperty = "id")void save(User us 阅读全文
posted @ 2022-02-26 13:09 雪前 阅读(604) 评论(0) 推荐(0)