【web】myeclipse+spring boot+maven之helloworld

这里介绍使用myeclipse2014结合maven开发spring boot 的helloworld应用处理方式。

1、新建工程

打开myeclipse2014 ide,新建一个maven工程,详细步骤可参考下图所示:

【web】myeclipse+spring boot+maven之helloworld_第1张图片

【web】myeclipse+spring boot+maven之helloworld_第2张图片

【web】myeclipse+spring boot+maven之helloworld_第3张图片

 2、修改maven配置文件pom.xml

打开工程中生成的pom.xml文件,修改默认配置。如下直接上我的配置,具体说明自行百度或者后面再补充。




  4.0.0  

  com.xiaobuke
  springboot
  0.0.1-SNAPSHOT
  jar

  springboot
  
  http://www.example.com 

  
    UTF-8
    1.7
    1.7
  
  
  
	  org.springframework.boot
	  spring-boot-starter-parent
	  1.1.4.RELEASE
  

  
        
            org.springframework.boot
            spring-boot-starter-web
        
  
    
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
        
    
    
      
        
          maven-compiler-plugin
          
            1.7
            1.7
          
        
      
    
  

3、增加启动类

示例中新建Application类作为启动类,该类在项目的包根目录下(我这里打开另外一个示例工程,所以包名是com.xiaobuke.dbms,请注意匹配),该类的作用很简单:

  1. 启动自动配置;
  2. 开启组件扫描;
  3. 提供入口函数main函数;

直接上内容:

package com.xiaobuke.dbms;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@ComponentScan
@EnableAutoConfiguration
public class Application {
	
	public static void main(String[] args) {
		SpringApplication.run(Application.class, args);
	}
}

4、增加controller

这里增加一个非常简单的restcontroller用来进行测试,该controller非常简单,实现如下功能:

  1. 映射/test的url到项目;
  2. 当使用get方法请求url时直接返回"hello,world"字样;

直接上代码(该类放到了controller的包下):

package com.xiaobuke.dbms.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/test")
public class TestController {
	
	@RequestMapping(method=RequestMethod.GET)
	public String test() {
		return "hello,world";
	}

}

5、增加工程配置

新建一个prop文件,将工程的一些相关配置放到该prop文件中方便修改使用。示例中配置文件名为application.properties,存放在src---main---resources目录下。文件的内容比较初级,直接附上:

server.port=8081
server.session-timeout=30
server.tomcat.uri-encoding=UTF-8
 
 
spring.thymeleaf.prefix=classpath:templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html 
spring.thymeleaf.cache=false

6、运行测试

运行测试时非常简单,直接选中Application.java类,然后右键run as----java application运行调试即可。如下图所示:

【web】myeclipse+spring boot+maven之helloworld_第4张图片

运行 起来后的一些效果:

【web】myeclipse+spring boot+maven之helloworld_第5张图片

此时可以打开浏览器,然后输入测试连接(http://localhost:8081/test)进行测试。 如下为本文测试结果:

【web】myeclipse+spring boot+maven之helloworld_第6张图片

7、打包发布

本文使用maven进行打包发布。打开命令行窗口并进入到pom.xml文件所在的目录,执行如下命令进行编译:

mvn package

打包成功后输出内容如下:

【web】myeclipse+spring boot+maven之helloworld_第7张图片

此时 可以在target目录下看到编译打包后生成的jar文件。可以在jar包所在目录下执行如下命令进行简单的运行测试:

java -jar dbms-0.0.1-SNAPSHOT.jar

运行后打开浏览器访问测试url测试即可。

 

代码下载地址:https://download.csdn.net/download/yxtouch/10748291

你可能感兴趣的:(web应用)