IntelliJ IDEA +maven+springboot入门项目helloworld
1、创建maven工程
非web工程,不需要web项目。
后面直接下一步,下一步即可。
Maven项目创建完成。
2、配置springboot基本类
2.1 配置pom.xml文件,
<?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.sunny</groupId> <artifactId>hello</artifactId> <version>1.0-SNAPSHOT</version> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.2.RELEASE</version> </parent> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build></project>
2.2 创建并配置类
配置java类,如下截图。
配置controller类,
package com.sunny.controller;
.......
@Controllerpublic class HelloWorld { @ResponseBody @RequestMapping("/hello") public String hello() { return "Hello World..."; }}
2.3 配置启动类类
package com.sunny;
import ...
@SpringBootApplicationpublic class HelloWorldMainApplication { public static void main(String[] args){ //Spring应用启动起来 SpringApplication.run(HelloWorldMainApplication.class,args); }}
3、启动验证
启动方式,启动入口application服务,
访问地址:
自此,maven+springboot项目demo部署完成。
4、全局配置文件
Spring Boot项目使用一个全局的配置文件application.properties或者是application.yml,在resources目录下或者类路径下的/config下,一般我们放到resources下。4.1修改端口,匹配规则Server.port=8081Server.servlet-path=*.html
5、自动配置静态资源
Server.port=8081
Server.servlet-path=*.html
#设置日志级别
Logging.level.org.springframework=DEBUG
#静态资源
Spring.resources.static-loctions=classpath:/META-INF/resources/,class