springboot文件上传及banner.tex启动样式

 文件上传

upload.html

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>

<form action="/upload" method="post" enctype="multipart/form-data">
    文件上传<input type="file" name="file" /></br>
    <input type="submit" value="提交">
</form>

</body>
</html>

 contorller控制层

@RestController
public class UploadContorller {

    @PostMapping("/upload")
    public Map multipart(MultipartFile file, HttpServletRequest request){//MultipartFile  表示你当前上传文件的对象
        Map map = new HashMap();
//        拿到文件名
        String name = file.getOriginalFilename();
//        换名字
        String newNamae = new Date().getTime() + new Random().nextInt(999999) + name;
//      得到上传路径          真实的开发过程中,实际上是你的服务器路径 192.168.208.128/xxx/xxx
        String path = request.getServletContext().getRealPath("/upload/");
//
        File f = new File(path);
//        当前上传的这个服务器地址如果没有这个目录
        if (!f.exists()) {
            f.mkdir();//那我就创建这个目录
        }
        File f1 = new File(path+newNamae);
        //显示路径地址
        System.out.println(path+newNamae);
        try {
            file.transferTo(f1);
            map.put("msg","成功");
        }catch (IllegalStateException e){
            e.printStackTrace();
            map.put("msg","失败");
        }catch (IOException e) {
            e.printStackTrace();
        }
        return map;
    }
}

boot启动类

package com.zhf.demoboot3_30;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.MultipartConfigFactory;
import org.springframework.util.unit.DataSize;

import javax.servlet.MultipartConfigElement;
import javax.servlet.annotation.MultipartConfig;
import javax.sql.DataSource;

@SpringBootApplication
public class Demoboot330Application {

    public static void main(String[] args) {
        SpringApplication.run(Demoboot330Application.class, args);
    }

    public MultipartConfigElement multipartConfigElement(){
        MultipartConfigFactory factory = new MultipartConfigFactory();
        //设置上传的文件大小
        factory.setMaxFileSize(DataSize.parse("1024kb"));
        //设置上传的总文件大小
        factory.setMaxRequestSize(DataSize.parse("102400kb"));
        return factory.createMultipartConfig();//创建上传的配置
    }

}

文件上传路径

浏览器访问upload.html                并选择文件上传

成功

 application.properties配置文件的值获取

 ServletUtil

package com.zhf.demoboot3_30.entity;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Component;

//1、给属性增加注解读取配置文件数据
//2、编写实体类通过注解读取配置文件数据
@Component
@PropertySource("classpath:application.properties")//去读资源文件
// 通过注解读取配置application.perperties文件中的key-value(键值对)并将key-value中的value映射到属性或实体类中
public class ServerUtil {

    @Value("${server.name}")
    private String name;
    @Value("${server.ip}")
    private String address;


    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }
}

contorller层

package com.zhf.demoboot3_30.contorller;

import com.zhf.demoboot3_30.entity.ServerUtil;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.annotation.Resource;

@RestController
public class UploadContorller {

    @Resource
    private ServerUtil serverUtil;

    public ServerUtil getServerUtil() {
        return serverUtil;
    }

    public void setServerUtil(ServerUtil serverUtil) {
        this.serverUtil = serverUtil;
    }

    @GetMapping("/show")
    public ServerUtil getData(){
        return serverUtil;
    }




}

 application.properties配置


server.name=centeros7
server.ip=192.168.208.128

浏览器访问show请求  返回配置文件的值

 启动样式banner    在resources下file创建banner.tex文件更改启动样式

 

智能网联汽车的安全员高级考试涉及多个方面的专业知识,包括但不限于自动驾驶技术原理、车辆传感器融合、网络安全防护以及法律法规等内容。以下是针对该主题的一些核心知识解析: ### 关于智能网联车安全员高级考试的核心内容 #### 1. 自动驾驶分级标准 国际自动机工程师学会(SAE International)定义了六个级别的自动驾驶等级,从L0到L5[^1]。其中,L3及以上级别需要安全员具备更高的应急处理能力。 #### 2. 车辆感知系统的组成与功能 智能网联车通常配备多种传感器,如激光雷达、毫米波雷达、摄像头和超声波传感器等。这些设备协同工作以实现环境感知、障碍物检测等功能[^2]。 #### 3. 数据通信与网络安全 智能网联车依赖V2X(Vehicle-to-Everything)技术进行数据交换,在此过程中需防范潜在的网络攻击风险,例如中间人攻击或恶意软件入侵[^3]。 #### 4. 法律法规要求 不同国家和地区对于无人驾驶测试及运营有着严格的规定,考生应熟悉当地交通法典中有关自动化驾驶部分的具体条款[^4]。 ```python # 示例代码:模拟简单决策逻辑 def decide_action(sensor_data): if sensor_data['obstacle'] and not sensor_data['emergency']: return 'slow_down' elif sensor_data['pedestrian_crossing']: return 'stop_and_yield' else: return 'continue_driving' example_input = {'obstacle': True, 'emergency': False, 'pedestrian_crossing': False} action = decide_action(example_input) print(f"Action to take: {action}") ``` 需要注意的是,“同学”作为特定平台上的学习资源名称,并不提供官方认证的标准答案集;建议通过正规渠道获取教材并参加培训课程来准备此类资格认证考试
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值