木舟0基础学习Java的第三十一天(SpringMVC,xml式和注解式开发,携带数据,取值,视图解析)

SpringMVC

Mybatis: 优化了dao层 降低了java与dao层的耦合

Spring:是大管家 整合和管理mybatis与springmve(是spring中子模块)

SpringMVC:优化了servlet层 降低了java与servlet的耦合

为什么要使用 springMVC?

SpringMVC 是一种基于 Java,实现了 Web MVC 设计模式,请求驱动类型的轻量级 Web 框架,即使用了 MVC 架构模式的思想,将 Web 层进行职责解耦。基于请求驱动指的就是使用请求-响应模型 框架的目的就是帮助我们简化开发,SpringMvc也是要简化日常 Web 开发(处理业务数据的对象和显示业务数据的视图之间存在紧密耦合)

SpringMVC XML式开发

1.创建WEB项目

2.在WEB-INF下创建lib包导入jar包

3.编写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/XMLSchema-instance"xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"version="4.0"><!--web.xml文件是程序员与tomcat服务器打交道的配置文件用来配置servlet的访问url--><servlet><servlet-name>dispatcherServlet</servlet-name><!--在tomcat启动过程中,tomcat加载web.xml文件,并读取到DispatcherServlet并new了对象--><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class></servlet><servlet-mapping><servlet-name>dispatcherServlet</servlet-name><url-pattern>/</url-pattern><!--/表示拦截所有的请求,交给springmvc处理同时会把静态资源全部拦截--></servlet-mapping>
</web-app>

4.创建一个类 实现Controller 例:

public class MyController implements Controller {@Overridepublic ModelAndView handleRequest(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {ModelAndView m=new ModelAndView();m.addObject("name","张三");m.setViewName("a.jsp");return m;}
}

5.写dispatcherServlet-servlet.xml 注意这个配置文件一定要叫这个名 放在WEB-INF下

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"xmlns:context="http://www.springframework.org/schema/context"xmlns:mvc="http://www.springframework.org/schema/mvc"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"><!--下面的配置的意思是:通过在浏览器中访问/my,请求到MyContrller相当于学习servlet中配置的url-partten在spring容器中new了 MyContrller对象--><bean id="/my" class="com.springmvc.controller.MyController"></bean><!--放行静态资源--><!--/images/**表示放行images下的所有文件及其子文件中的文件--><mvc:resources mapping="/images/**" location="/images/"></mvc:resources>
</beans>

6.写jsp

<%--Created by IntelliJ IDEA.User: AdministratorDate: 2024/9/26Time: 10:31To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%String path = request.getContextPath(); //获取当前工程的根目录String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/"; //项目url根目录
%>
<html>
<head><base href="<%=basePath%>"> <!--这个让此文件下的路径都相对于当前工程开始--><title>Title</title>
</head>
<body>
这是第一个springMVC项目
${name}
<img src="images/~~G%7DV9PS3S~S0~GN3)H$5RO_tmb.jpg">
</body>
</html>

SpringMVC注解式开发(开发中推荐使用)

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"xmlns:context="http://www.springframework.org/schema/context"xmlns:mvc="http://www.springframework.org/schema/mvc"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"><!--下面的配置的意思是:通过在浏览器中访问/my,请求到MyContrller相当于学习servlet中配置的url-partten在spring容器中new了 MyContrller对象--><bean id="/my" class="com.springmvc.controller.MyController"></bean><!--放行静态资源--><!--/images/**表示放行images下的所有文件及其子文件中的文件--><mvc:resources mapping="/images/**" location="/images/"></mvc:resources><mvc:resources mapping="/html/**" location="/html/"></mvc:resources><!--上面是SpringMVC xml式开发--><!--下面是开启SpringMVC注解式开发的标签--><mvc:annotation-driven></mvc:annotation-driven><!--扫描com.springmvc.controller下所有的类--><context:component-scan base-package="com.springmvc.controller"></context:component-scan>
</beans>
@Controller//@Controller是@Component的衍生注解 意义与@Component是一样的 都是把当前类交给Spring容器管理public class MyController02 {@RequestMapping("/abc")//指定访问当前方法的限定路径的名称(uri)public ModelAndView show1() {//ModelAndView这个是封装页面共享数据和指定跳转页面的类ModelAndView m = new ModelAndView();//携带数据跳转到页面m.addObject("name","李四");m.setViewName("/a.jsp");//  这个/相当于web目录 可以加也可以不加 如果该类有限定路径名 那么一定要加/return m;}@RequestMapping("/c")//指定访问当前方法的限定路径的名称(uri)public String show2() {return "/html/c.html";//html属于静态资源需要放行}@RequestMapping("/b")//指定访问当前方法的限定路径的名称(uri)public String show3(Model m) {//spring在底层执行了 Model m=new Model();//使用Model携带数据 流转到页面上m.addAttribute("city","辽宁");return "b.jsp";//html属于静态资源需要放行}
}

SpringMVC通过注解开发 使用String携带数据 和取值

@Controller
public class UserController {@RequestMapping("/login1")public String loginUser1(String uname,String pwd,String[] favor,String birthday){/*逐个接收表达提交的数据 注意 接收的名字要与表单中 name的值一致*/System.out.println("uname:"+uname);System.out.println("pwd:"+pwd);System.out.println("favor:"+ Arrays.toString(favor));System.out.println("birthday:"+birthday);//return "forward:/success.jsp";//默认情况下就是请求转发 其实省略了 return "forward:/success.jsp"; (地址不会变)return "redirect:/success.jsp";//重定向 redirect:不能省略 (地址会改变)}@RequestMapping("/login2")public String loginUser2(String uname, String pwd, String[] favor, Date birthday){//这个Date使用的是sql包中的 包含年月日 可以接收数据/*逐个接收表达提交的数据 注意 接收的名字要与表单中 name的值一致*/System.out.println("uname:"+uname);System.out.println("pwd:"+pwd);System.out.println("favor:"+ Arrays.toString(favor));System.out.println("birthday:"+birthday);return "/success.jsp";}@RequestMapping("/login3")public String loginUser3(String uname, String pwd, String[] favor,@DateTimeFormat(pattern = "yyyy-MM-dd") java.util.Date birthday){//这个Date使用的是java.util包中的 包含年月日,时分秒 报400错误//!!!!!重要 报400错误一定是springMVC Controller接收表单提交数据 不能正常接收//处理该错误 需要指定date 年月日的格式 @DateTimeFormat(pattern = "yyyy-MM-dd") 不指定时分秒HH:MM:ss/*底层自动做了该处理 SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");java.util.Date date=sdf.parse("2024-09-26");*//*逐个接收表达提交的数据 注意 接收的名字要与表单中 name的值一致*/System.out.println("uname:"+uname);System.out.println("pwd:"+pwd);System.out.println("favor:"+ Arrays.toString(favor));System.out.println("birthday:"+birthday);return "/success.jsp";}//通过对象封装数据 一次性接收@RequestMapping("/login4")//get和post方式都可以通过该注解接收public String loginUser4(User user){System.out.println("user:"+user);return "/success.jsp";}//通过restful风格的方式提交数据@RequestMapping("/restful/{name}/{pwd}")public String restful(@PathVariable String name, @PathVariable int pwd){System.out.println("name:"+name);System.out.println("pwd:"+pwd);return "/success.jsp";}//使用ajax接收值@RequestMapping(value = "/login6",produces = "text/html;charset=utf-8")//get和post方式都可以通过该注解接收@ResponseBody//响应体 表示相应的是值 不是页面了 produces = "text/html;charset=utf-8"设置响应编码public String ajax(String name,int age){System.out.println("name:"+name);System.out.println("age:"+age);return "后台接收到:"+name+"--"+age;}//使用void java内置属性传递值@RequestMapping("/login7")//get和post方式都可以通过该注解接收public void loginUser7(HttpServletRequest req, HttpServletResponse resp, HttpSession session) throws IOException {req.setCharacterEncoding("utf-8");resp.setContentType("text/html;charset=utf-8");String uname = req.getParameter("uname");session.setAttribute("uname", uname);resp.sendRedirect("/springMVC_01_Demo_war_exploded/success.jsp");}/*跳转到外部页面跳到百度(属于跨域访问)* */@RequestMapping("/baidu")public ModelAndView toBaidu(){RedirectView redirectView = new RedirectView("https://www.baidu.com");ModelAndView mv = new ModelAndView(redirectView);return mv;}
}
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<html>
<head><title>$Title$</title><script src="js/jquery-3.5.1.js"></script><script>$(function () {$("#but").click(function () {$.get("login6",{"name":"赵云","age":"20"},function (data) {eval("var json="+data);alert(json.name+"-"+json.age);})})})</script>
</head>
<body>
<H3>用户提交数据</H3>
<form action="login3">用户名:<input type="text" name="uname"/><br/>密码:<input type="password" name="pwd"/><br/>爱好:<br/>看书<input type="checkbox" value="1" name="favor"/>画画<input type="checkbox" value="2" name="favor"/>写字<input type="checkbox" value="3" name="favor"/><br/>生日:<input type="text" name="birthday"/><input type="submit" value="提交"/>
</form>
<a href="login5/zhangsan/123">超链接restful风格携带数据请求</a>
<button type="submit" id="but" >ajax请求</button>
</body>
</html>

视图解析

SpringMVC中的视图解析器的主要作用就是将逻辑视图转换成用户可以看到的物理视图

放在WEB-INF下面的页面都需要通过controller间接访问才可以访问到 提高了数据的安全性

手动创建视图解析器 

/*放在WEB-INF下面的页面都需要通过controller间接访问才可以访问到 提高了数据的安全性*/
@Controller
public class PageController {//该方法称为:视图解析(手写版的固定视图解析器)@RequestMapping("/a")public String showPage() {return "WEB-INF/jsp/abc.jsp";}//手写版的视图解析@RequestMapping("/{uri}")//  /{uri}-->restful风格的数据提交方式public String showPage(@PathVariable String uri) {String s="WEB-INF/jsp/"+uri+".jsp";System.out.println(s);return s;}
}

通过xml配置视图解析器

在dispatcherServlet-servlet.xml中

 <!--配置视图解析器jsp的--><bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"><!--前缀--><property name="prefix" value="WEB-INF/jsp/"></property><!--后缀--><property name="suffix" value=".jsp"></property></bean>

创建与配置配套的方法 

 /** 当前的方法是配套视图解析器配置使用的 不能缺!!!* */@RequestMapping("/{page}")public String page(@PathVariable String page) {System.out.println("page"+page);return page;}

配置双视图解析器jsp与html

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"xmlns:context="http://www.springframework.org/schema/context"xmlns:mvc="http://www.springframework.org/schema/mvc"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"><!--下面的配置的意思是:通过在浏览器中访问/my,请求到MyContrller相当于学习servlet中配置的url-partten在spring容器中new了 MyContrller对象--><bean id="/my" class="com.springmvc.controller.MyController"></bean><!--放行静态资源--><!--/images/**表示放行images下的所有文件及其子文件中的文件--><mvc:resources mapping="/images/**" location="/images/"></mvc:resources><mvc:resources mapping="/js/**" location="/js/"></mvc:resources><!--上面是SpringMVC xml式开发--><!--下面是开启SpringMVC注解式开发的标签--><mvc:annotation-driven></mvc:annotation-driven><!--扫描com.springmvc.controller下所有的类--><context:component-scan base-package="com.springmvc.controller"></context:component-scan><!--配置视图解析器jsp的--><bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"><!--前缀--><property name="prefix" value="WEB-INF/jsp/"></property><!--后缀--><property name="suffix" value=".jsp"></property><!--双视图解析器需要指定优先级--><property name="order" value="1"></property><!--value="1" 这里填写大于等于0的数 数字越小优先级越高--></bean><!--配置视图解析器html的--><bean class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer"><!--配置前缀--><property name="templateLoaderPath" value="/WEB-INF/html/"></property><!--设置编码--><property name="defaultEncoding"><value>utf-8</value></property></bean><bean class="org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver"><!--设置编码--><property name="contentType" value="text/html;charset=utf-8"></property><!--配置后缀--><property name="suffix" value=".html"></property><!--指定优先级:value=(数字>=0)越小优先级越高--><property name="order" value="0"></property></bean>
</beans>

案例:文件的上传与下载

<?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:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"version="4.0"><!--web.xml文件是程序员与tomcat服务器打交道的配置文件用来配置servlet的访问url--><servlet><servlet-name>dispatcherServlet</servlet-name><!--在tomcat启动过程中,tomcat加载web.xml文件,并读取到DispatcherServlet并new了对象--><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class></servlet><servlet-mapping><servlet-name>dispatcherServlet</servlet-name><url-pattern>/</url-pattern><!--/表示拦截所有的请求,交给springmvc处理同时会把静态资源全部拦截--></servlet-mapping>
</web-app>
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"xmlns:context="http://www.springframework.org/schema/context"xmlns:mvc="http://www.springframework.org/schema/mvc"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsdhttp://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"><!--下面的配置的意思是:通过在浏览器中访问/my,请求到MyContrller相当于学习servlet中配置的url-partten在spring容器中new了 MyContrller对象--><!-- <bean id="/my" class="com.springmvc.controller.MyController"></bean>--><!--放行静态资源--><!--/images/**表示放行images下的所有文件及其子文件中的文件--><!--<mvc:resources mapping="/images/**" location="/images/"></mvc:resources><mvc:resources mapping="/js/**" location="/js/"></mvc:resources>--><!--上面是SpringMVC xml式开发--><!--下面是开启SpringMVC注解式开发的标签--><mvc:annotation-driven></mvc:annotation-driven><!--扫描com.springmvc.controller下所有的类--><context:component-scan base-package="com.springmvc.controller"></context:component-scan><!--配置视图解析器jsp的--><bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"><!--前缀--><property name="prefix" value="WEB-INF/jsp/"></property><!--后缀--><property name="suffix" value=".jsp"></property><!--双视图解析器需要指定优先级--><property name="order" value="1"></property><!--value="1" 这里填写大于等于0的数 数字越小优先级越高--></bean><!--配置视图解析器html的--><bean class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer"><!--配置前缀--><property name="templateLoaderPath" value="/WEB-INF/html/"></property><!--设置编码--><property name="defaultEncoding"><value>utf-8</value></property></bean><bean class="org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver"><!--设置编码--><property name="contentType" value="text/html;charset=utf-8"></property><!--配置后缀--><property name="suffix" value=".html"></property><!--指定优先级:value=(数字>=0)越小优先级越高--><property name="order" value="0"></property></bean><!--上传文件的配置--><bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"><!--如果上传的文件是中文的 指定编码 避免乱码--><property name="defaultEncoding" value="utf-8"></property></bean>
</beans>
@Controller
public class PageController {@RequestMapping("/{page}")public String page(@PathVariable String page) {System.out.println("page:"+page);return page;}
}
/*文件的上传与下载
* 上传
*/
@Controller
public class FileController {@RequestMapping(value = "/fileupload",produces = "text/html;charset-utf-8")@ResponseBodypublic String fileUpload(MultipartFile files) throws IOException {//这个files名字与表单中的name值一致//获取上传的文件的名字String originalFilename = files.getOriginalFilename();System.out.println(originalFilename);/** 开发中上传的文件存储在磁盘(硬盘中的某个目录下),然后把存储路径放在数据库中* */File filePath = new File("e:/datas");if (!filePath.exists()) {//如果目录不存在就创建一个filePath.mkdir();}//上传文件//为了避免文件同名覆盖 可以在originalFilename名字+毫秒值System.currentTimeMillis()File file = new File(filePath, System.currentTimeMillis()+originalFilename);files.transferTo(file);return "ok";}/*文件的上传与下载* 下载*/@RequestMapping("/filedown")@ResponseBodypublic ResponseEntity<byte[]> downLoad() throws IOException {//文件路径String path="E:\\其他/5.png";//封装pathFile  file= new File(path);//从硬盘中读取文件FileInputStream in = new FileInputStream(file);//实际开发中 "E:\\datas/win2020-2024(一键激活)pro.zip"该路径在数据库中取//创建一个数组 装要下载的数据byte[] b = new byte[in.available()];//将数据存放到数组中in.read(b);//设置以附件的方式下载(小弹窗) 给响应到浏览器的对象设置响应头HttpHeaders headers = new HttpHeaders();//获取文件名称String fileName = file.getName();headers.add("Content-Disposition", "attachment;filename="+ URLEncoder.encode(fileName,"utf-8"));//状态码HttpStatus status = HttpStatus.OK;//HttpStatus.OK 表示状态码为200//将数据封装到ResponseEntityResponseEntity entity = new ResponseEntity(b,headers,status);//b 存放数据的数组 headers是MultiValueMap的子类 status状态码return entity;}
}
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%String path = request.getContextPath(); //获取当前工程的根目录String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/"; //项目url根目录
%>
<html>
<head><base href="<%=basePath%>"> <!--这个让此文件下的路径都相对于当前工程开始--><title>Title</title>
</head>
<body>
<form action="fileupload" method="post" enctype="multipart/form-data"><%--enctype="multipart/form-data" 提交的数据是多媒体数据(二进制的)--%><input type="file" name="files"><input type="submit" value="上传">
</form>
<h1>下载测试</h1>
<a href="filedown">下载文件</a>
</body>
</html>

Spring与SpringMVC父子容器关系

在 Spring 整体框架的核心概念中,容器是核心思想,就是用来管理 Bean 的整个生命周期的,而在一个项目中,容器不一定只有一个,Spring,中可以包括多个容器,而且容器有上下层关系,目前最常见的一种场景就是在一个项目中引入 spring和 springMvc这两个框架,那么它其实就是两个容器,Spring是父容器,SpringMvc 是其子容器,并且在 Spring父容器中注册的 Bean 对于SpringMVc容器中是可见的,而在 SpringMvc容器中注册的 Bean 对于spring父容器中是不可见的,也就是子容器可以看见父容器中的注册的 Bean,反之就不行。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/55155.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

当贝播放器 1.5.0 畅享原画,支持阿里网盘、杜比视界和8K播放

当贝播放器TV是一款专为智能电视设计的视频播放器&#xff0c;具有强大的解码能力&#xff0c;支持阿里网盘、百度网盘等网盘资源导入。此外&#xff0c;还支持外部设备导入&#xff0c;并能自动匹配电影海报封面、内容介绍和剧照。 大小&#xff1a;47.3M 百度网盘&#xff1…

Python与MongoDB交互

Python与MongoDB的交互通常通过pymongo库来实现。pymongo是一个官方的Python驱动程序&#xff0c;用于与MongoDB数据库进行交互。以下是一个简单的示例&#xff0c;展示了如何使用pymongo来连接到MongoDB数据库&#xff0c;执行一些基本的数据库操作&#xff08;如插入、查询、…

js 实现视频封面截图

今天给大家分享一下&#xff0c;如何实现视频封面截取功能&#xff0c;这里主要用到了 HTML5 的 canvas 相关的 api 和 js 相关的一些知识&#xff0c;话不多说&#xff0c;直接上代码&#xff1a; <template><div><div class"margin-tb-sm"><…

【ARM】MDK-当选择AC5时每次点击build都会全编译

【更多软件使用问题请点击亿道电子官方网站】 1、 文档目标 解决MDK中选择AC5时每次点击build都会全编译 2、 问题场景 在MDK中点击build时&#xff0c;正常会只进行增量编译&#xff0c;但目前每次点击的时候都会全编译。 3、软硬件环境 1 软件版本&#xff1a;Keil MDK 5.…

html+css+js实现dialog对话框

实现效果 HTML部分 <span class"text">点击打开 Dialog</span><!-- 警告框 --><div class"alert"><div class"header"><i>X</i> </div><div class"content">确认关闭</di…

基于php的律所管理系统

作者&#xff1a;计算机学姐 开发技术&#xff1a;SpringBoot、SSM、Vue、MySQL、JSP、ElementUI、Python、小程序等&#xff0c;“文末源码”。 专栏推荐&#xff1a;前后端分离项目源码、SpringBoot项目源码、Vue项目源码、SSM项目源码 精品专栏&#xff1a;Java精选实战项目…

【git】通过配置 `init.defaultBranch`,自定义 Git 初始化时的默认分支名称,避免使用 `master` 并消除相关的警告提示

Git 会提示你配置一个默认的初始分支名称 git init 提示&#xff1a;使用 ‘master’ 作为初始分支的名称。这个默认分支名称可能会更改。要在新仓库中 提示&#xff1a;配置使用初始分支名&#xff0c;并消除这条警告&#xff0c;请执行&#xff1a; 提示&#xff1a; 提示&am…

从0开始深度学习(6)——Pytorch动态图机制(前向传播、反向传播)

PyTorch 的动态计算图机制是其核心特性之一&#xff0c;它使得深度学习模型的开发更加灵活和高效。 0 计算图 计算图&#xff08;Computation Graph&#xff09;是一种用于表示数学表达式或程序流程的图形结构&#xff0c;可以将复杂的表达式分解成一系列简单的操作&#xff0…

详解代理模式-【静态代理与JDK动态代理】(非常的斯国一)

目录 静态代理 什么是静态代理: ​ 特点: 例子&#xff1a; JDK动态代理&#xff08;主要讲点&#xff09; 大纲&#xff1a; 1、与静态代码的联系 2、JDK动态代理的主流程 3、Proxy的源码 整体概述&#xff1a; 重要点的翻译 &#xff1a; newProxyInstance源码&am…

深信服2025届全球校招研发笔试-C卷(AK)

前面14个填空题 T1 已知 子数组 定义为原数组中的一个连续子序列。现给定一个正整数数组 arr&#xff0c;请计算该数组内所有可能的奇数长度子数组的数值之和。 输入描述 输入一个正整数数组arr 输出描述 所有可能的奇数长度子数组的和 示例 1 输入 1,4,2,5,3 输出 58 说明 …

C++11智能智能指针解析

C11 引入了 智能指针来解决手动管理动态内存的复杂性。它们能够自动管理堆内存&#xff0c;并在不再需要时自动释放&#xff0c;避免内存泄漏和悬空指针问题。C11 提供了三种主要的智能指针类型&#xff1a;std::unique_ptr、std::shared_ptr 和 std::weak_ptr。 1. std::uniq…

使用 Light Chaser 进行大屏数据可视化

引言 在当今数据驱动的世界中&#xff0c;数据可视化变得越来越重要。Light Chaser 是一款基于 React 技术栈的大屏数据可视化设计工具&#xff0c;通过简单的拖拽操作&#xff0c;你可以快速生成漂亮、美观的数据可视化大屏和看板。本文将介绍如何使用 Light Chaser 进行数据…

ENV | docker 安装使用(简单实操版)

1. 详细步骤 1.1 安装 sudo apt update sudo apt install docker.io1.2 验证&#xff08;可跳过&#xff09; docker -v1.3 使用 1.3.1 拉取镜像 # 镜像源&#xff0c;如使用腾讯云服务器&#xff0c;可使用 https://mirror.ccs.tencentyun.com docker pull xxx1.3.2 运行…

828华为云征文|部署在线文档应用程序 CodeX Docs

828华为云征文&#xff5c;部署在线文档应用程序 CodeX Docs 一、Flexus云服务器X实例介绍二、Flexus云服务器X实例配置2.1 重置密码2.2 服务器连接2.3 安全组配置2.4 Docker 环境搭建 三、Flexus云服务器X实例部署 CodeX Docs3.1 CodeX Docs 介绍3.2 CodeX Docs 部署3.3 CodeX…

RabbitMQ应用

RabbitMQ 共提供了7种⼯作模式, 进⾏消息传递 一、七种模式的概述 1、Simple(简单模式) P:生产者,就是发送消息的程序 C:消费者,就是接收消息的程序 Queue:消息队列,类似⼀个邮箱, 可以缓存消息; ⽣产者向其中投递消息, 消费者从其中取出消息 特点: ⼀个⽣产者P,⼀…

小米2025届软件开发工程师(C/C++/Java)(编程题AK)

选择题好像也是25来个 编程题 T1 题目描述 小明喜欢解决各种数学难题。一天&#xff0c;他遇到了一道有趣的题目:他需要帮助他的朋友们完成一个排序任务。小明得到两个长度为 n 的数组a[]和b[]。他可以在两个数组对应位置进行交换&#xff0c;即选定一个位置 i &#xff0c…

hrnet训练的pt模型结合目标检测进行关键点识别的更准确前向推理

本篇在将图像输入hrnet识别之前先进行目标检测来确定识别的位置&#xff0c;让识别更加精准。 本段代码设置了一个区域框BOX&#xff0c;让人走入区域内才开始检测&#xff0c;适用于考核等场景&#xff0c;也可以直接去掉BOX也是一样的效果。若画面背景中有多个行人&#xff0…

《pyqt+open3d》open3d可视化界面集成到qt中

《pyqtopen3d》open3d可视化界面集成到qt中 一、效果显示二、代码三、资源下载 一、效果显示 二、代码 参考链接 main.py import sys import open3d as o3d from PyQt5.QtWidgets import QApplication, QMainWindow, QWidget from PyQt5.QtGui import QWindow from PyQt5.Qt…

App模拟下载场景的demo

摘要 目的&#xff1a;提供一个稳定的下载场景&#xff0c;可以手动触发和定时触发下载&#xff0c;每次下载相同大小文件&#xff0c;研究下载场景的功耗影响 原理&#xff1a;把电脑当做服务器&#xff0c;手机测试App固定下载电脑存放的某个XXXMB的大文件&#xff0c;基于…

C语言进阶版第14课—内存函数

文章目录 1. memcpy函数的使用和模拟实现1.1 memcpy函数的使用1.2 模拟实现memcpy函数 2. memmove函数的使用和模拟实现2.1 memmove函数的使用2.2 memmove函数的模拟实现 3. memset函数4. memcmp函数 1. memcpy函数的使用和模拟实现 1.1 memcpy函数的使用 memcpy函数的原形voi…