摘要: Hello,World! 将来的你一定会感谢,现在努力拼搏的自己! 阅读全文
posted @ 2022-01-20 07:37 ℒ歧 阅读(59) 评论(0) 推荐(0)
摘要: /** * @Title: Person.java * @Description: TODO(描述) * @author Soul */ public class Person { private String name; private Integer age; private String gr 阅读全文
posted @ 2023-05-30 14:15 ℒ歧 阅读(760) 评论(0) 推荐(0)
摘要: if (res.data.dataList) { res.data.dataList.forEach(function (aRow) { Object.keys(aRow).forEach(function (prop) { if (typeof aRow[prop] "string") { aRo 阅读全文
posted @ 2023-05-29 17:28 ℒ歧 阅读(92) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-05-02 16:04 ℒ歧 阅读(85) 评论(0) 推荐(0)
摘要: public final class Md5Util { private Md5Util(){} /** * 将明文密码转成MD5密码 */ public static String encodeByMd5(String password) throws Exception{ //Java中Mess 阅读全文
posted @ 2022-05-28 12:50 ℒ歧 阅读(40) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="UTF-8"?><web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sc 阅读全文
posted @ 2022-05-28 12:45 ℒ歧 阅读(107) 评论(0) 推荐(0)
摘要: 仿数据库 增删改查功能 1.实体类 /* * 实体类 */ public class User { private int id; private String name; private String pwd; public int getId() { return id; } public vo 阅读全文
posted @ 2022-04-15 23:35 ℒ歧 阅读(50) 评论(0) 推荐(0)
摘要: 简单的实现登录功能,无后台. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>login</title> <script src="https://code.jquery.com/jquery-3.1.1.m 阅读全文
posted @ 2022-04-14 13:37 ℒ歧 阅读(429) 评论(1) 推荐(0)
摘要: 1.JavaWeb jar: web.xml: <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/X 阅读全文
posted @ 2022-04-13 14:39 ℒ歧 阅读(75) 评论(0) 推荐(0)
摘要: JavaMvc搭建项目: 1.导入jar <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.1.9.RELEASE</version> </dep 阅读全文
posted @ 2022-04-13 13:41 ℒ歧 阅读(56) 评论(0) 推荐(0)