| @@ -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/ | |||
| @@ -0,0 +1,199 @@ | |||
| # spring-boot-demo-template-beetl | |||
| > 本 demo 主要演示了 Spring Boot 项目如何集成 beetl 模板引擎 | |||
| ## 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-demo-template-beetl</artifactId> | |||
| <version>0.0.1-SNAPSHOT</version> | |||
| <packaging>jar</packaging> | |||
| <name>spring-boot-demo-template-beetl</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> | |||
| <ibeetl.version>1.1.63.RELEASE</ibeetl.version> | |||
| <hutool.version>4.1.16</hutool.version> | |||
| </properties> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>com.ibeetl</groupId> | |||
| <artifactId>beetl-framework-starter</artifactId> | |||
| <version>${ibeetl.version}</version> | |||
| </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> | |||
| <optional>true</optional> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>cn.hutool</groupId> | |||
| <artifactId>hutool-all</artifactId> | |||
| <version>${hutool.version}</version> | |||
| </dependency> | |||
| </dependencies> | |||
| <build> | |||
| <finalName>spring-boot-demo-template-beetl</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.beetl.controller | |||
| * @description: 主页 | |||
| * @author: yangkai.shen | |||
| * @date: Created in 2018/10/10 11:17 AM | |||
| * @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("page/index.btl"); | |||
| mv.addObject(user); | |||
| } | |||
| return mv; | |||
| } | |||
| } | |||
| ``` | |||
| ## UserController.java | |||
| ```java | |||
| /** | |||
| * <p> | |||
| * 用户页面 | |||
| * </p> | |||
| * | |||
| * @package: com.xkcoding.template.beetl.controller | |||
| * @description: 用户页面 | |||
| * @author: yangkai.shen | |||
| * @date: Created in 2018/10/10 11:17 AM | |||
| * @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("page/login.btl"); | |||
| } | |||
| } | |||
| ``` | |||
| ## index.html | |||
| ```jsp | |||
| <!doctype html> | |||
| <html lang="en"> | |||
| <% include("/common/head.html"){} %> | |||
| <body> | |||
| <div id="app" style="margin: 20px 20%"> | |||
| 欢迎登录,${user.name}! | |||
| </div> | |||
| </body> | |||
| </html> | |||
| ``` | |||
| ## login.html | |||
| ```jsp | |||
| <!doctype html> | |||
| <html lang="en"> | |||
| <% include("/common/head.html"){} %> | |||
| <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> | |||
| ``` | |||
| ## application.yml | |||
| ```yaml | |||
| server: | |||
| port: 8080 | |||
| servlet: | |||
| context-path: /demo | |||
| ``` | |||
| ## Beetl 语法糖学习文档 | |||
| http://ibeetl.com/guide/#beetl | |||
| @@ -0,0 +1,70 @@ | |||
| <?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-demo-template-beetl</artifactId> | |||
| <version>0.0.1-SNAPSHOT</version> | |||
| <packaging>jar</packaging> | |||
| <name>spring-boot-demo-template-beetl</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> | |||
| <ibeetl.version>1.1.63.RELEASE</ibeetl.version> | |||
| <hutool.version>4.1.16</hutool.version> | |||
| </properties> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>com.ibeetl</groupId> | |||
| <artifactId>beetl-framework-starter</artifactId> | |||
| <version>${ibeetl.version}</version> | |||
| </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> | |||
| <optional>true</optional> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>cn.hutool</groupId> | |||
| <artifactId>hutool-all</artifactId> | |||
| <version>${hutool.version}</version> | |||
| </dependency> | |||
| </dependencies> | |||
| <build> | |||
| <finalName>spring-boot-demo-template-beetl</finalName> | |||
| <plugins> | |||
| <plugin> | |||
| <groupId>org.springframework.boot</groupId> | |||
| <artifactId>spring-boot-maven-plugin</artifactId> | |||
| </plugin> | |||
| </plugins> | |||
| </build> | |||
| </project> | |||
| @@ -0,0 +1,25 @@ | |||
| package com.xkcoding.template.beetl; | |||
| import org.springframework.boot.SpringApplication; | |||
| import org.springframework.boot.autoconfigure.SpringBootApplication; | |||
| /** | |||
| * <p> | |||
| * 启动类 | |||
| * </p> | |||
| * | |||
| * @package: com.xkcoding.template.beetl | |||
| * @description: 启动类 | |||
| * @author: yangkai.shen | |||
| * @date: Created in 2018/10/10 11:17 AM | |||
| * @copyright: Copyright (c) 2018 | |||
| * @version: V1.0 | |||
| * @modified: yangkai.shen | |||
| */ | |||
| @SpringBootApplication | |||
| public class SpringBootDemoTemplateBeetlApplication { | |||
| public static void main(String[] args) { | |||
| SpringApplication.run(SpringBootDemoTemplateBeetlApplication.class, args); | |||
| } | |||
| } | |||
| @@ -0,0 +1,43 @@ | |||
| package com.xkcoding.template.beetl.controller; | |||
| import cn.hutool.core.util.ObjectUtil; | |||
| import com.xkcoding.template.beetl.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.beetl.controller | |||
| * @description: 主页 | |||
| * @author: yangkai.shen | |||
| * @date: Created in 2018/10/10 11:17 AM | |||
| * @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("page/index.btl"); | |||
| mv.addObject(user); | |||
| } | |||
| return mv; | |||
| } | |||
| } | |||
| @@ -0,0 +1,45 @@ | |||
| package com.xkcoding.template.beetl.controller; | |||
| import com.xkcoding.template.beetl.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.beetl.controller | |||
| * @description: 用户页面 | |||
| * @author: yangkai.shen | |||
| * @date: Created in 2018/10/10 11:17 AM | |||
| * @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("page/login.btl"); | |||
| } | |||
| } | |||
| @@ -0,0 +1,22 @@ | |||
| package com.xkcoding.template.beetl.model; | |||
| import lombok.Data; | |||
| /** | |||
| * <p> | |||
| * 用户 model | |||
| * </p> | |||
| * | |||
| * @package: com.xkcoding.template.beetl.model | |||
| * @description: 用户 model | |||
| * @author: yangkai.shen | |||
| * @date: Created in 2018/10/10 11:18 AM | |||
| * @copyright: Copyright (c) 2018 | |||
| * @version: V1.0 | |||
| * @modified: yangkai.shen | |||
| */ | |||
| @Data | |||
| public class User { | |||
| private String name; | |||
| private String password; | |||
| } | |||
| @@ -0,0 +1,4 @@ | |||
| server: | |||
| port: 8080 | |||
| servlet: | |||
| context-path: /demo | |||
| @@ -0,0 +1,8 @@ | |||
| <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-demo-template-beetl</title> | |||
| </head> | |||
| @@ -0,0 +1,9 @@ | |||
| <!doctype html> | |||
| <html lang="en"> | |||
| <% include("/common/head.html"){} %> | |||
| <body> | |||
| <div id="app" style="margin: 20px 20%"> | |||
| 欢迎登录,${user.name}! | |||
| </div> | |||
| </body> | |||
| </html> | |||
| @@ -0,0 +1,13 @@ | |||
| <!doctype html> | |||
| <html lang="en"> | |||
| <% include("/common/head.html"){} %> | |||
| <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> | |||
| @@ -0,0 +1,16 @@ | |||
| package com.xkcoding.template.beetl; | |||
| 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 SpringBootDemoTemplateBeetlApplicationTests { | |||
| @Test | |||
| public void contextLoads() { | |||
| } | |||
| } | |||