上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: SpringCloud 概念 Spring Cloud 是一站式解决分布式微服务的方案 Spring Cloud是一系列框架的有序集合。它利用Spring Boot的开发便利性巧妙地简化了分布式系统基础设施的开发,如服务发现注册、配置中心、消息总线、负载均衡、断路器、数据监控等,都可以用Spring 阅读全文
posted @ 2022-08-01 12:45 为了她 阅读(69) 评论(0) 推荐(0) 编辑
摘要: Springboot整合ssm项目(显示login) 快速创建springboot项目,勾选web,jdbc,mybatis,Thymeleaf,mysql application.properties改成自己想要的 # 应用名称 spring.application.name=springboot 阅读全文
posted @ 2022-07-29 14:16 为了她 阅读(165) 评论(0) 推荐(0) 编辑
摘要: Thymeleaf学习 三大模板 jsp html thymeleaf tld freemarker 面试题: 什么是模板,为什么使用thymeleaf模板? 第一,Thymeleaf 在有网络和无网络的环境下皆可运行,即它可以让美工在浏览器查看页面的静态效果,也可以让程序员在服务器查看带数据的动态 阅读全文
posted @ 2022-07-29 10:29 为了她 阅读(187) 评论(0) 推荐(0) 编辑
摘要: Springboot 基础完结->整合SSM spring boot常用注解 @SpringbootApplication 表名是springboot应用 组合注解 元注解 @Target({ElementType.TYPE}) 注解能写到哪里 @Retention(RetentionPolicy. 阅读全文
posted @ 2022-07-28 16:12 为了她 阅读(40) 评论(0) 推荐(0) 编辑
摘要: Springboot复习2 spring boot概述及自动配置原理 SpringBoot的优缺点: 优点: 快速构建项目。 对主流开发框架的无配置集成。 项目可独立运行,无须外部依赖Servlet容器。 -提供运行时的应用监控。 极大的提高了开发、部署效率。 与云计算的天然集成。 缺点: 如果你不 阅读全文
posted @ 2022-07-27 21:40 为了她 阅读(27) 评论(0) 推荐(0) 编辑
摘要: Springboot复习1 新建一个空的maven工程 pom.xml里: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www. 阅读全文
posted @ 2022-07-25 15:00 为了她 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 线程状态(第三部分03) 五大状态 图片 线程方法 方法说明 setPriority(int newPriority) 更改线程的优先级 static void sleep(long millis) 在指定的毫秒数内让当前正在执行的线程休眠 void join() 等待该线程终止 static vo 阅读全文
posted @ 2022-06-29 20:59 为了她 阅读(22) 评论(0) 推荐(0) 编辑
摘要: crm最开始 见crm2项目 1.配置完成后-》逆向工程三张表,bean,mapper放进去 UserController @Controller @RequestMapping("user") public class UserController { @Autowired private IUs 阅读全文
posted @ 2022-06-26 20:35 为了她 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 客户信息管理的历史订单查看 1、显示客户历史订单、及显示订单明细 OrderController @Controller @RequestMapping("order") public class OrderController { @Autowired private IOrderService 阅读全文
posted @ 2022-06-22 00:48 为了她 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 接着写06 线程创建方式3:实现Callable接口(了解即可)@扩充 实现Callable接口,需要返回值类型 重写call方法,需要抛出异常 创建目标对象 创建执行服务:ExecutorService ser = Executors.newFixedThredPool(1); 提交执行:Futu 阅读全文
posted @ 2022-06-21 16:32 为了她 阅读(103) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页