
springboot
max_yuyu
这个作者很懒,什么都没留下…
展开
-
springboot+vue实现的登录
目录结构前端端口:8080后端端口:8900login.vue<template> <div class="login_content"> <!-- 登录块 --> <div class="login_box"> <!-- 头像 --> <div class="avatar_box"> <img原创 2021-05-24 21:52:09 · 2415 阅读 · 12 评论 -
sprinboot整合jackson,gson,fastjson
使用了lombok省略了实体类的set和get方法JSON 处理三大主流框架 -jsckson-json-fastjson序列化 和 反序列化序列化: 对象 -> JSON (响应JSON)反序列化: JSON -> 对象 (请求参数是JSON)HttpMessageConverter:转换器: 对象->JSON JSON->对象所有的JSON工具都会自动提供 HttpMessageConverter-jackjson:MappingJa.原创 2021-03-13 12:12:59 · 299 阅读 · 0 评论 -
springboot+thymleaf学习
hello.html<!DOCTYPE html><html lang="en" xmlns:th="http://www.thymeleaf.org"><head> <meta charset="UTF-8"> <title>Title</title> <script th:src="@{/hello.js}"></script> <script th:inline原创 2021-03-10 19:00:44 · 99 阅读 · 0 评论 -
springboot+freemarker语句
hello.ftlh<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body><#-- 引入外部的宏定义--><#import './mymacro.ftlh' as com><@com.book bs=["三国演义","原创 2021-03-10 18:54:34 · 106 阅读 · 0 评论