Browse Source

spring-boot-template-freemarker 完成

pull/1/head
Yangkai.Shen 6 years ago
parent
commit
d0cdb76b6d
12 changed files with 459 additions and 0 deletions
  1. +25
    -0
      spring-boot-template-freemarker/.gitignore
  2. +183
    -0
      spring-boot-template-freemarker/README.md
  3. +67
    -0
      spring-boot-template-freemarker/pom.xml
  4. +25
    -0
      spring-boot-template-freemarker/src/main/java/com/xkcoding/template/freemarker/SpringBootTemplateFreemarkerApplication.java
  5. +43
    -0
      spring-boot-template-freemarker/src/main/java/com/xkcoding/template/freemarker/controller/IndexController.java
  6. +45
    -0
      spring-boot-template-freemarker/src/main/java/com/xkcoding/template/freemarker/controller/UserController.java
  7. +22
    -0
      spring-boot-template-freemarker/src/main/java/com/xkcoding/template/freemarker/model/User.java
  8. +4
    -0
      spring-boot-template-freemarker/src/main/resources/application.yml
  9. +7
    -0
      spring-boot-template-freemarker/src/main/resources/templates/common/head.ftl
  10. +9
    -0
      spring-boot-template-freemarker/src/main/resources/templates/index.ftl
  11. +13
    -0
      spring-boot-template-freemarker/src/main/resources/templates/login.ftl
  12. +16
    -0
      spring-boot-template-freemarker/src/test/java/com/xkcoding/template/freemarker/SpringBootTemplateFreemarkerApplicationTests.java

+ 25
- 0
spring-boot-template-freemarker/.gitignore View File

@@ -0,0 +1,25 @@
/target/
!.mvn/wrapper/maven-wrapper.jar

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
/nbproject/private/
/build/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

+ 183
- 0
spring-boot-template-freemarker/README.md View File

@@ -0,0 +1,183 @@
# spring-boot-template-freemarker

> 本 demo 主要演示了 Spring Boot 项目如何集成 freemarker 模板引擎

## pom.xml

```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.xkcoding</groupId>
<artifactId>spring-boot-template-freemarker</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-template-freemarker</name>
<description>Demo project for Spring Boot</description>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.5.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<hutool.version>4.1.15</hutool.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>

<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
</dependencies>

<build>
<finalName>spring-boot-template-freemarker</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>
```

## IndexController.java

```java
/**
* <p>
* 主页
* </p>
*
* @package: com.xkcoding.template.freemarker.controller
* @description: 主页
* @author: yangkai.shen
* @date: Created in 2018/10/9 3:07 PM
* @copyright: Copyright (c) 2018
* @version: V1.0
* @modified: yangkai.shen
*/
@Controller
@Slf4j
public class IndexController {

@GetMapping(value = {"", "/"})
public ModelAndView index(HttpServletRequest request) {
ModelAndView mv = new ModelAndView();

User user = (User) request.getSession().getAttribute("user");
if (ObjectUtil.isNull(user)) {
mv.setViewName("redirect:/user/login");
} else {
mv.setViewName("index");
mv.addObject(user);
}

return mv;
}
}
```

## UserController.java

```java
/**
* <p>
* 用户页面
* </p>
*
* @package: com.xkcoding.template.freemarker.controller
* @description: 用户页面
* @author: yangkai.shen
* @date: Created in 2018/10/9 3:11 PM
* @copyright: Copyright (c) 2018
* @version: V1.0
* @modified: yangkai.shen
*/
@Controller
@RequestMapping("/user")
@Slf4j
public class UserController {
@PostMapping("/login")
public ModelAndView login(User user, HttpServletRequest request) {
ModelAndView mv = new ModelAndView();

mv.addObject(user);
mv.setViewName("redirect:/");

request.getSession().setAttribute("user", user);
return mv;
}

@GetMapping("/login")
public ModelAndView login() {
return new ModelAndView("login");
}
}
```

## index.ftl

```jsp
<!doctype html>
<html lang="en">
<#include "./common/head.ftl">
<body>
<div id="app" style="margin: 20px 20%">
欢迎登录,${user.name}!
</div>
</body>
</html>
```

## login.ftl

```jsp
<!doctype html>
<html lang="en">
<#include "./common/head.ftl">
<body>
<div id="app" style="margin: 20px 20%">
<form action="/demo/user/login" method="post">
用户名<input type="text" name="name" placeholder="用户名"/>
密码<input type="password" name="password" placeholder="密码"/>
<input type="submit" value="登录">
</form>
</div>
</body>
</html>
```


+ 67
- 0
spring-boot-template-freemarker/pom.xml View File

@@ -0,0 +1,67 @@
<?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.xkcoding</groupId>
<artifactId>spring-boot-template-freemarker</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>spring-boot-template-freemarker</name>
<description>Demo project for Spring Boot</description>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.5.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<hutool.version>4.1.15</hutool.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>

<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
</dependencies>

<build>
<finalName>spring-boot-template-freemarker</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>

+ 25
- 0
spring-boot-template-freemarker/src/main/java/com/xkcoding/template/freemarker/SpringBootTemplateFreemarkerApplication.java View File

@@ -0,0 +1,25 @@
package com.xkcoding.template.freemarker;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
* <p>
* 启动类
* </p>
*
* @package: com.xkcoding.template.freemarker
* @description: 启动类
* @author: yangkai.shen
* @date: Created in 2018/10/9 3:17 PM
* @copyright: Copyright (c) 2018
* @version: V1.0
* @modified: yangkai.shen
*/
@SpringBootApplication
public class SpringBootTemplateFreemarkerApplication {

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

+ 43
- 0
spring-boot-template-freemarker/src/main/java/com/xkcoding/template/freemarker/controller/IndexController.java View File

@@ -0,0 +1,43 @@
package com.xkcoding.template.freemarker.controller;

import cn.hutool.core.util.ObjectUtil;
import com.xkcoding.template.freemarker.model.User;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.servlet.ModelAndView;

import javax.servlet.http.HttpServletRequest;

/**
* <p>
* 主页
* </p>
*
* @package: com.xkcoding.template.freemarker.controller
* @description: 主页
* @author: yangkai.shen
* @date: Created in 2018/10/9 3:07 PM
* @copyright: Copyright (c) 2018
* @version: V1.0
* @modified: yangkai.shen
*/
@Controller
@Slf4j
public class IndexController {

@GetMapping(value = {"", "/"})
public ModelAndView index(HttpServletRequest request) {
ModelAndView mv = new ModelAndView();

User user = (User) request.getSession().getAttribute("user");
if (ObjectUtil.isNull(user)) {
mv.setViewName("redirect:/user/login");
} else {
mv.setViewName("index");
mv.addObject(user);
}

return mv;
}
}

+ 45
- 0
spring-boot-template-freemarker/src/main/java/com/xkcoding/template/freemarker/controller/UserController.java View File

@@ -0,0 +1,45 @@
package com.xkcoding.template.freemarker.controller;

import com.xkcoding.template.freemarker.model.User;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

import javax.servlet.http.HttpServletRequest;

/**
* <p>
* 用户页面
* </p>
*
* @package: com.xkcoding.template.freemarker.controller
* @description: 用户页面
* @author: yangkai.shen
* @date: Created in 2018/10/9 3:11 PM
* @copyright: Copyright (c) 2018
* @version: V1.0
* @modified: yangkai.shen
*/
@Controller
@RequestMapping("/user")
@Slf4j
public class UserController {
@PostMapping("/login")
public ModelAndView login(User user, HttpServletRequest request) {
ModelAndView mv = new ModelAndView();

mv.addObject(user);
mv.setViewName("redirect:/");

request.getSession().setAttribute("user", user);
return mv;
}

@GetMapping("/login")
public ModelAndView login() {
return new ModelAndView("login");
}
}

+ 22
- 0
spring-boot-template-freemarker/src/main/java/com/xkcoding/template/freemarker/model/User.java View File

@@ -0,0 +1,22 @@
package com.xkcoding.template.freemarker.model;

import lombok.Data;

/**
* <p>
* 用户 model
* </p>
*
* @package: com.xkcoding.template.freemarker.model
* @description: 用户 model
* @author: yangkai.shen
* @date: Created in 2018/10/9 3:06 PM
* @copyright: Copyright (c) 2018
* @version: V1.0
* @modified: yangkai.shen
*/
@Data
public class User {
private String name;
private String password;
}

+ 4
- 0
spring-boot-template-freemarker/src/main/resources/application.yml View File

@@ -0,0 +1,4 @@
server:
port: 8080
servlet:
context-path: /demo

+ 7
- 0
spring-boot-template-freemarker/src/main/resources/templates/common/head.ftl View File

@@ -0,0 +1,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>spring-boot-template-freemarker</title>
</head>

+ 9
- 0
spring-boot-template-freemarker/src/main/resources/templates/index.ftl View File

@@ -0,0 +1,9 @@
<!doctype html>
<html lang="en">
<#include "./common/head.ftl">
<body>
<div id="app" style="margin: 20px 20%">
欢迎登录,${user.name}!
</div>
</body>
</html>

+ 13
- 0
spring-boot-template-freemarker/src/main/resources/templates/login.ftl View File

@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<#include "./common/head.ftl">
<body>
<div id="app" style="margin: 20px 20%">
<form action="/demo/user/login" method="post">
用户名<input type="text" name="name" placeholder="用户名"/>
密码<input type="password" name="password" placeholder="密码"/>
<input type="submit" value="登录">
</form>
</div>
</body>
</html>

+ 16
- 0
spring-boot-template-freemarker/src/test/java/com/xkcoding/template/freemarker/SpringBootTemplateFreemarkerApplicationTests.java View File

@@ -0,0 +1,16 @@
package com.xkcoding.template.freemarker;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
public class SpringBootTemplateFreemarkerApplicationTests {

@Test
public void contextLoads() {
}

}

Loading…
Cancel
Save