SpringBoot学习笔记(6)——SpringBoot整合Freemarker

SpringBoot学习笔记(6)——SpringBoot整合Freemarker

1. 创建项目

SpringBoot学习笔记(6)——SpringBoot整合Freemarker_第1张图片

2. 修改pom,添加坐标

  <dependencies>
  <!-- springBoot的启动器 -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
   <!-- freemarker启动器的坐标 -->
   <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-freemarker</artifactId>
    </dependency>
</dependencies>

3. 编写视图

注意:springBoot要求模板形式的视图层技术的文件必须要放到src/main/resources目录下必须要一个名为templates的文件夹中。

userList.ftl:

<html>
	<head>
		<title>展示用户数据</title>
		<meta charset="utf-9"></meta>
	</head>	
	<body>		
		<table border="1" align="center" width="50%">			
			<tr>				
				<th>ID</th>
				<th>Name</th>
				<th>Age</th>
			</tr>
			
			<#list list as user >
				<tr>
					<td>${user.userid}</td>
					<td>${user.username}</td>
					<td>${user.userage}</td>
				</tr>
			</#list>	
		</table>
	</body>
</html>

4. 创建Controller

@Controller
public class UserController {
	/*
	 * 处理请求,产生数据
	 */
	@RequestMapping("/showUser")
	public String showUser(Model model){
		List<Users> list = new ArrayList<>();
		list.add(new Users(1,"张三",20));
		list.add(new Users(2,"李四",22));
		list.add(new Users(3,"王五",24));
		
		//需要一个Model对象
		model.addAttribute("list", list);
		//跳转视图
		return "userList";
	}
}

5. 创建启动器

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

6. 运行

运行App.java启动SpringBoot,在浏览器端访问localhost:8080/showUser
SpringBoot学习笔记(6)——SpringBoot整合Freemarker_第2张图片

你可能感兴趣的:(SpringBoot学习笔记)