zoukankan      html  css  js  c++  java
  • 第26月第20天 springboot

    ---------------------

    1、pom.xml中添加支持web的模块:

    <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
     </dependency>
    

    pom.xml文件中默认有两个模块:

    spring-boot-starter:核心模块,包括自动配置支持、日志和YAML;

    spring-boot-starter-test:测试模块,包括JUnit、Hamcrest、Mockito。

    2、编写controller内容

    @RestController
    public class HelloWorldController {
        @RequestMapping("/hello")
        public String index() {
            return "Hello World";
        }
    }
    

    @RestController的意思就是controller里面的方法都以json格式输出,不用再写什么jackjson配置的了!

    3、启动主程序,打开浏览器访问,就可以看到效果了,有木有很简单!

    https://zhuanlan.zhihu.com/p/24957789

    https://www.zhihu.com/question/53729800/answer/255785661

    ------------------------

    1.

    修改IEDA设置

    打开 Settings --> Build-Execution-Deployment --> Compiler,将 Build project automatically.勾上。

    点击 Help --> Find Action..,或使用快捷键 Ctrl+Shift+A来打开 Registry...,将 其中的compiler.automake.allow.when.app.running勾上。

    https://1few.com/spring-boot-hot-swap/#more-238

  • 相关阅读:
    Git安装(操作篇)
    Git安装
    ES6基础练习
    SVN的安装与搭建及使用
    解决SVN文件不显示绿色小钩图标问题
    混入(mixin)
    ref属性与props配置项
    docker-compose部署 Mysql 8.0 主从模式基于GTID
    项目统一处理
    Docker Compose实战
  • 原文地址:https://www.cnblogs.com/javastart/p/9991174.html
Copyright © 2011-2022 走看看