springBoot01

Posted ohmydenzi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springBoot01相关的知识,希望对你有一定的参考价值。

/*
    使用spring官网的 http://start.spring.io/ 来建立项目包
    生成入口文件,入口文件中对类注释@SpringBootApplication,这个注释是唯一的,标明这个类是入口类
    可以直接启动该类,发现项目是通过内置的Tomcat启动的,端口号8080
    
    因为还没有配置数据库,所以先用注释标明先不启动DataSource

 */
@SpringBootApplication
@EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class})
public class XcxloginApplication {

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

 

/**
 * 访问控制器需要用@RestController来声明,表示告诉Spring直接渲染返回string给调用者
 * 路由通过@RequestMapping来声明
 */

@RestController
public class HelloWorldController {
    @RequestMapping(value = "/index", method = RequestMethod.GET)
    public String index(){
        return "HelloWorld";
    }
}

 

以上是关于springBoot01的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段

Spring boot:thymeleaf 没有正确渲染片段

11SpringBoot-CRUD-thymeleaf公共页面元素抽取

学习小片段——springboot 错误处理

19 01 11 javascript ?????????????????????(???????????????) ??????????????????????????????(代码片段

[linux][c/c++]代码片段01