springboot入门
Posted N神3
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot入门相关的知识,希望对你有一定的参考价值。
1、快速创建springboot项目
1.1、使用spring官方SPRING INITIALIZR工具可以快速创建springboot项目。IDEA开发工具也集成了spring initializr工具
1.2、maven项目目录结构
project maven
|--java目录结构(保存所有后台java代码)
|----com.company.projectname.controller
|----com.company.projectname.service
|----com.company.projectname.dao
|--resource目录结构
|----static:保存所有的静态资源(js,css,image)
|----template:保存所有的模板页面
|----application.properties:spring应用配置文件
2、SpringBootApplication注解
/** *SpringBootApplication注解,应用的入口,可以启动应用 */ @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class,args); } }
3、springboot应用打包运行
打包:springboot maven插件,可以将应用打包成一个可执行jar。将下面配置在pom.xml,执行idea maven:Lifecycle -> package
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build>
controller编写:
/** * RestController = Controller + ResponseBody * ResponseBody :方法返回的数据直接给浏览器 */ @RestController public class HelloController { @RequestMapping("/hello") public String hello(){ return "hello world!"; } }
运行:java -jar spring-boot-helloword-1.0-SNAPSHOT.jar
访问:localhost:8080/helloworld
以上是关于springboot入门的主要内容,如果未能解决你的问题,请参考以下文章
全栈编程系列SpringBoot整合Shiro(含KickoutSessionControlFilter并发在线人数控制以及不生效问题配置启动异常No SecurityManager...)(代码片段
SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段