目前java的开发很多Learner都慢慢的学习使用IDEA这款工具,个人觉得其实相比Eclipse来说差不多,个人习惯的问题,但是我还是推荐IDEA这款工具。虽然它目前是收费的,但相信网上的各种破解方式很多,由于对学生和教师是可以免费使用的,所以个人推荐拿个学生邮箱去注册一个,非常的方便快捷就是一个验证而已,具体步骤就希望大家去网上get一下了。
好现在!我们通过IDEA来搭建一个简单的web
勾选下面三个页面的选项
等待,可能在Maven下载相关jar的时候时间会久一点
配置连接数据库参数application.properties
spring.datasource.url = jdbc:mysql://localhost:3306/test
spring.datasource.username = root
spring.datasource.password = root
spring.datasource.driverClassName = com.mysql.jdbc.Driver
#页面热加载
spring.thymeleaf.cache = false
#端口
server.port=8080
这样一个Web项目即完成,该页面展示出来的项目名和我创建步骤中名称不一样,但创建步骤是一样的只是命名不一样而已。下面我们来测试一下
创建一个控制类
package com.lzc.springbootdemo;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class testController {
@RequestMapping("/index")
public ResponseEntity<String> index(){
String as = "hello";
return new ResponseEntity<String>(as, HttpStatus.OK);
}
}
运行程式
Run程式后在浏览器输入http://localhost:8080/index
下面我们去转发一个页面
创建一个html页面
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Title</title>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
下面修改控制类
package com.lzc.springbootdemo;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class testController {
// @RequestMapping("/index")
// public ResponseEntity<String> index(){
// String as = "hello";
//
// return new ResponseEntity<String>(as, HttpStatus.OK);
// return "test";
// }
@RequestMapping("/index")
public String index(){
return "test";
}
}
Run程式浏览器输入 http://localhost:8080/index
就此项目测试完成,希望对大家有帮助。想想也很长时间没有来写博客了,有点混。