• 大小: 20.76MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-06-17
  • 语言: Java
  • 标签: springboot  java  

资源简介

小马哥 Java 微服务实践 - Spring Boot 系列(PPT和源代码)

资源截图

代码片段和文件信息

package com.segmentfault.springbootlesson1;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.support.SpringBootServletInitializer;
import org.springframework.stereotype.Controller;
import org.springframework.stereotype.Service;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import java.util.HashMap;
import java.util.Map;

@Controller
@SpringBootApplication
@Service
public class SpringBootLesson1Application extends SpringBootServletInitializer {

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

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(SpringBootLesson1Application.class);
    }


    @RequestMapping(“/“)
    @ResponseBody
    String home() {
        return “Hello World!“;
    }

    @RequestMapping(“/index“)
    public String index() {
        return “index“;
    }


    @RequestMapping(“/rest“)
    @ResponseBody
    public Mapject> rest() {

        Mapject> data = new HashMapject>();

        data.put(“1“ “A“);
        data.put(“2“ 2);

        return data;

    }


}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     574316  2019-05-07 03:31  pptx\1.pptx

     文件     292142  2019-05-07 03:31  pptx\10.pptx

     文件     302416  2019-05-07 03:31  pptx\11.pptx

     文件     417534  2019-05-07 03:30  pptx\12.pptx

     文件     651666  2019-05-07 03:30  pptx\13.pptx

     文件     292293  2019-05-07 03:30  pptx\15.pptx

     文件    1494216  2019-05-07 03:30  pptx\16.pptx

     文件     546844  2019-05-07 03:30  pptx\17.pptx

     文件     288554  2019-05-07 03:30  pptx\18.pptx

     文件     285876  2019-05-07 03:30  pptx\19.pptx

     文件     779632  2019-05-07 03:29  pptx\2.pptx

     文件     607603  2019-05-07 03:29  pptx\20.pptx

     文件     292246  2019-05-07 03:29  pptx\3.pptx

     文件     326748  2019-05-07 03:29  pptx\4.pptx

     文件     751700  2019-05-07 03:29  pptx\5.pptx

     文件     288170  2019-05-07 03:29  pptx\6.pptx

     文件    2218505  2019-05-07 03:28  pptx\7.pptx

     文件     366760  2019-05-07 03:28  pptx\8.pptx

     文件     447008  2019-05-07 03:27  pptx\9.pptx

     文件         60  2019-05-07 03:27  segmentfault-lessons-master\.gitignore

     文件      12588  2019-05-07 03:27  segmentfault-lessons-master\README.md

     文件      47610  2019-05-07 03:36  segmentfault-lessons-master\spring-boot\lesson-1\spring-boot-lesson-1\.mvn\wrapper\maven-wrapper.jar

     文件        110  2019-05-07 03:36  segmentfault-lessons-master\spring-boot\lesson-1\spring-boot-lesson-1\.mvn\wrapper\maven-wrapper.properties

     文件       4994  2019-05-07 03:34  segmentfault-lessons-master\spring-boot\lesson-1\spring-boot-lesson-1\mvnw.cmd

     文件       1718  2019-05-07 03:34  segmentfault-lessons-master\spring-boot\lesson-1\spring-boot-lesson-1\pom.xml

     文件       6148  2019-05-07 03:34  segmentfault-lessons-master\spring-boot\lesson-1\spring-boot-lesson-1\src\.DS_Store

     文件       6148  2019-05-07 03:37  segmentfault-lessons-master\spring-boot\lesson-1\spring-boot-lesson-1\src\main\java\.DS_Store

     文件       1504  2019-05-07 03:37  segmentfault-lessons-master\spring-boot\lesson-1\spring-boot-lesson-1\src\main\java\com\segmentfault\springbootlesson1\SpringBootLesson1Application.java

     文件        102  2019-05-07 03:36  segmentfault-lessons-master\spring-boot\lesson-1\spring-boot-lesson-1\src\main\resources\application.properties

     文件        161  2019-05-07 03:36  segmentfault-lessons-master\spring-boot\lesson-1\spring-boot-lesson-1\src\main\webapp\WEB-INF\index.jsp

............此处省略690个文件信息

评论

共有 条评论