SpringBoot take-off series - Web development

I. Preface From today on, we will start our web development. The previous article used SpringBoot Take-off Series - Build Environment with idea (2) We have explained how to develop, of course, this is the beginning of the construction, and then we will start to develop in detail, including the use of various starters in spring boot, the real f ...

Posted by mbowling on Sun, 06 Oct 2019 16:27:37 -0700

[SpringBoot 2.x] - Thymeleaf, Web, Tomcat and Favicon in SpringBoot Web Development

github: https://github.com/Ccww-lx/Sp... Module: spring-boot-starter-base-web Web development is a very important part of development. The core content of Web development mainly includes embedded Servlet container and Spring MVC. More importantly, Spring Boot `provides a quick and convenient way for web development. It uses dependency jar: sp ...

Posted by virva on Sat, 05 Oct 2019 20:47:38 -0700

thymeleaf all kinds of problems, tag useless? Page 404?

First, html pages    <!DOCTYPE html> //Note that this xmlns must be followed by https, and mine is that it does not add s to make it impossible to recognize msg as a variable. <html lang="en" xmlns:th="https://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>Thymeleaf grammar</titl ...

Posted by daredevil88 on Wed, 02 Oct 2019 19:05:58 -0700

Spring Boot: Mail Service

Articles Catalogue I. Project Initialization Configuration 1.1 Project Dependence 1.2 Project Profile 2. Code Implementation 2.1 mail entity parameter: `Mail.java` 2.2 Send Mail Interface: `MailService.java` 2.3 Implementation of Sending Mail I ...

Posted by Doyley on Thu, 15 Aug 2019 02:27:30 -0700

Spring Security Authentication, Authorization and Privilege Control

I wrote an article about Shiro, explaining the basic usage of Shiro. I wanted to do a series, but I was busy doing something else, and I never did it. Because of the project requirements, I took time to learn Security, share some experience and learn it together. This programme logo Build a simple Web project to implement the fol ...

Posted by Evoke on Thu, 08 Aug 2019 23:35:31 -0700

Spring Boot Shiro Use Tutorial

Apache Shiro is already well-known for Java, similar to authentication form authentication in.Net.The authentication and authorization policies in.net core are basically the same.Of course, it doesn't matter if you don't know, because all permissions are simulated social behavior of people or institutions. Starting with simple permissions, this ...

Posted by ralba1998 on Sun, 28 Jul 2019 16:53:00 -0700

springboot(2): web Integrated Development

The previous article introduced the Spring boot preliminary tutorial: spring boot(1): introduction, to facilitate you to quickly get started and understand the practical Spring boot features; the last part of this article continues to introduce other features of spring boot (some may not be the functions of spring boot system, but some open sou ...

Posted by arfa on Wed, 26 Jun 2019 12:01:47 -0700

Springboot 1.5x does not support velocity solutions

springboot integrates velocity, freemarker and thymeleaf templates in version 1.4. In this version, if you want to use these templates, you just need to introduce the corresponding starter pom. If I want to use thymeleaf template in my project. The basic steps are as follows: 1. Introducing starter to pom <!-- thymeleaf Template jar -- ...

Posted by rashpal on Sat, 08 Jun 2019 13:44:26 -0700

The Magic of SpringBook Development Case

Programmers have a natural curiosity that guides our programming career. It's very interesting to write a few lines of code, load it into the computer and let it work according to your ideas. But as we develop more and more things, we get busier and busier, and this curiosity slowly fades. From time to time, we should challenge ourselves with ...

Posted by mtmosier on Sat, 08 Jun 2019 12:08:25 -0700

Integrating mail Sending Service in SpringBoot Development Case

I remember a note I took last month, [Mail Notification System Revamping of Microsoft Architecture Practice]. ] At that time, we used open source third-party plug-ins mail and Thymeleaf to do the sending service. Obviously, you need to configure something like this. Trouble!!! After contacting Spring Boot, there is obviously a better solution. ...

Posted by CAPTAINCAPSLOCK on Thu, 06 Jun 2019 14:20:51 -0700