从零开始的Springboot的HelloWord,并实现图片上传功能

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从零开始的Springboot的HelloWord,并实现图片上传功能相关的知识,希望对你有一定的参考价值。

参考技术A

最近因需要快速搭建一个后台,目标功能为实现图片上传功能,然后通过Java后台调用Python模块运行,返回运行结果显示。
由于对后台功能要求简单,可创建最简单的 springboot demo即可。

此处注意 @RequestMapping("/index") 中路径 “/index” 和 返回的页面名字 “index_form” 不要相同,否则会报错

界面:

当在页面中选择文件加入图片时,实现效果如下:

从零开始SpringBoot项目-入门

最近项目一直用的都是SpringBoot,顺便总结一下SpringBoot的各种配置,想最简洁的运行一个SpringBoot程序,需要下面步骤


 

  • 构建一个maven项目,项目目录结构如下                                                                          技术分享
  • 配置pom
    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
    
        <groupId>com.blog.springboot</groupId>
        <artifactId>springboot</artifactId>
        <version>1.0-SNAPSHOT</version>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter</artifactId>
                    <version>1.3.1.RELEASE</version>
                </dependency>
            </dependencies>
        </dependencyManagement>
    
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
                <version>1.3.1.RELEASE</version>
            </dependency>
        </dependencies>
    
    
    </project>
    

     

  • 创建启动类                                                                                                                技术分享     
    @SpringBootApplication
    @RestController
    public class Application {
    
        public static void main(String[] args) {
            SpringApplication.run(Application.class, args);
        }
    
        @RequestMapping("/")
        public String hello() {
            return "hello world";
        }
    }
    

     

  • 执行启动类中的main方法技术分享
  • 浏览器输入localhost:8080技术分享

到这里,我们第一个spring程序就启动了

以上是关于从零开始的Springboot的HelloWord,并实现图片上传功能的主要内容,如果未能解决你的问题,请参考以下文章

从零开始创建一个 PHP 扩展

SpringBoot 入门学习(HelloWord)

从零开始一个http服务器-开始 (一)

—solidity中的HelloWord

从零开始-使用IDEA创建SpringBoot项目

从零开始SpringBoot项目-入门