会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
billwen
博客园
首页
新随笔
联系
订阅
管理
[置顶]
2023一个小目标:每天写50行代码
摘要: 写在前面: 今天是2023年1月1日,现在时间18:16,苦于自己写代码的水平有限,之前一直在学习,但效果甚微,后来反思一下,大概原因有两个,第一,没有持续学习,间断的学习,效果不好,有时候由于工作太忙,身心比较疲惫,回到家就不想学习,我觉得这大概是职场人的大多数;第二,没有进行实践,写代码归根结底
阅读全文
posted @ 2023-01-01 18:29 billwen
阅读(47)
评论(0)
推荐(0)
2023年1月
230127_50_SpringBoot入门
摘要: 5.页面国际化:网页中文和英文相互转换 修改默认编码为UTF-8 login login.tip=请登录 login.password=密码 login.remember 记住我 login.username=用户名 login.btn=登录 login_us login.tip=please si
阅读全文
posted @ 2023-01-27 21:30 billwen
阅读(31)
评论(0)
推荐(0)
230126_50_SpringBoot入门
摘要: 4.首页实现 自定义配置 package com.bill.config; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annot
阅读全文
posted @ 2023-01-26 17:16 billwen
阅读(18)
评论(0)
推荐(0)
230125_50_SpringBoot入门
摘要: SpringBoot实战:员工管理系统 1.静态资源导入 可以从百度网盘获取资源:链接: https://pan.baidu.com/s/1x-6U_NCNEhIXOq0CcvRW-g 提取码: mg94 复制这段内容后打开百度网盘手机App,操作更方便哦 将资源导入到resources目录下对应的
阅读全文
posted @ 2023-01-25 20:56 billwen
阅读(23)
评论(0)
推荐(0)
230124_50_SpringBoot入门
摘要: thymeleaf语法 1.th:utext,转义文本 controller model.addAttribute("msg","<h1>hello,springboot!</h1>"); html <div th:text="${msg}"></div> <div th:utext="${msg}
阅读全文
posted @ 2023-01-24 20:07 billwen
阅读(23)
评论(0)
推荐(0)
230123_50_SpringBoot入门
摘要: 首页和图标定制 首页:新建index文件,放到静态资源加载目录 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>首页-测试</title> </head> <body> <h1>首页</h1> </body>
阅读全文
posted @ 2023-01-23 23:25 billwen
阅读(14)
评论(0)
推荐(0)
230122_50_SpringBoot入门
摘要: SpringBoot Web开发 jar:webapp! 自动装配 1.创建应用,选择模块 springboot到底帮我们配置了什么?我们能不能进行修改?能修改哪些东西?能不能扩展? xxxAutoConfiguration..向容器中自动配置组件 xxxProperties:自动配置类,装配配置文
阅读全文
posted @ 2023-01-22 22:32 billwen
阅读(19)
评论(0)
推荐(0)
新年快乐!
摘要: 祝大家,新年快乐,兔年大吉!
阅读全文
posted @ 2023-01-21 21:24 billwen
阅读(13)
评论(0)
推荐(0)
230120_50_SpringBoot入门
摘要: springboot自动配置原理总结(参考狂神说) 以**HttpEncodingAutoConfiguration(Http编码自动配置)**为例解释自动配置原理; //表示这是一个配置类,和以前编写的配置文件一样,也可以给容器中添加组件; @Configuration //启动指定类的Confi
阅读全文
posted @ 2023-01-20 23:22 billwen
阅读(18)
评论(0)
推荐(0)
230119_50_SpringBoot入门
摘要: 多环境配置文件指定 方式一:properites文件 文件名可以是 application-{profile}.properties/yml , 用来指定多个环境版本: server.port=8081 // test server.port=8082 // dev spring.profiles.
阅读全文
posted @ 2023-01-19 19:42 billwen
阅读(17)
评论(0)
推荐(0)
230118_50_SpringBoot入门
摘要: yaml配置文件中,支持占位符配置 person: name: bill${random.int} age: 4 happy: true birth: 2023/01/15 maps: {k1: v1,k2: v2} hello: hello lists: - cat - dog - fish do
阅读全文
posted @ 2023-01-18 23:20 billwen
阅读(20)
评论(0)
推荐(0)
下一页
公告