会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
大灰狼21
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
···
23
下一页
2023年3月21日
静态资源映射webmvcconfig
摘要: 把静态资源导入resources里时,启动项目,访问项目主页发现不行,原因是得告诉sping静态资源的路径 于是得写个配置类webmvcconfig.java在里面配置静态资源路径 得extends WebMvcConfigurationSupport 然后在类上面写配置标签@Configurati
阅读全文
posted @ 2023-03-21 10:25 大灰狼21
阅读(85)
评论(0)
推荐(0)
编辑
idea不同页面多开项目
摘要:
阅读全文
posted @ 2023-03-21 10:01 大灰狼21
阅读(18)
评论(0)
推荐(0)
编辑
idea导入boot项目后改名字
摘要: 效果图: 步骤:
阅读全文
posted @ 2023-03-21 09:45 大灰狼21
阅读(15)
评论(0)
推荐(0)
编辑
2023年3月20日
idea导入boot项目
摘要: https://blog.csdn.net/weixin_46437112/article/details/127938352
阅读全文
posted @ 2023-03-20 18:26 大灰狼21
阅读(3)
评论(0)
推荐(0)
编辑
google翻译不生效
摘要: https://zhuanlan.zhihu.com/p/571190754 没解决其实
阅读全文
posted @ 2023-03-20 13:43 大灰狼21
阅读(4)
评论(0)
推荐(0)
编辑
EmployeeController类的根据id查询员工信息getById方法
摘要: @GetMapping("/{id}")public R<Employee> getById(@PathVariable Long id) { log.info("根据id查询员工信息。。。"); Employee employee = employeeService.getById(id); re
阅读全文
posted @ 2023-03-20 09:57 大灰狼21
阅读(61)
评论(0)
推荐(0)
编辑
EmployeeController类的根据id修改员工信息update方法
摘要: @PutMappingpublic R<String> update(HttpServletRequest request, @RequestBody Employee employee) { log.info(employee.toString()); //获取当前登录用户id //Long em
阅读全文
posted @ 2023-03-20 09:56 大灰狼21
阅读(50)
评论(0)
推荐(0)
编辑
EmployeeController类的分页查询page方法
摘要: @GetMapping("/page")public R<Page> page(int page, int pageSize, String name) { log.info("page={},pageSize={},name={}", page, pageSize, name); //构造分页构造
阅读全文
posted @ 2023-03-20 09:56 大灰狼21
阅读(78)
评论(0)
推荐(0)
编辑
EmployeeController类的新增员工save方法
摘要: @PostMappingpublic R<String> save(HttpServletRequest request, @RequestBody Employee employee) { log.info("新增员工,员工信息:{}", employee.toString()); //初始密码1
阅读全文
posted @ 2023-03-20 09:54 大灰狼21
阅读(24)
评论(0)
推荐(0)
编辑
EmployeeController类的员工退出logout方法
摘要: @PostMapping("/logout")public R<String> logout(HttpServletRequest request) { //1、清理Session中的用户id //2、返回结果 request.getSession().removeAttribute("employ
阅读全文
posted @ 2023-03-20 09:53 大灰狼21
阅读(16)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
7
···
23
下一页
公告