原文传送门 1. Template + data-model = output data-model是一个树状模型,通常是一个java对象. 2.data-model 入门 hashes(散列):目录变量(the root, misc) scalars(标量):存储单个值的变量(size, price, name and foo) sequences(序列):They store subvariables like hashes, but here subvariables doesn't ha
一.下载freemarker的jar包,到maven仓库下载 二.引入jar包,参考freemarker的手册写代码 1.Test.ftlh <!DOCTYPE html> <html> <head> <title>Welcome!</title> </head> <body> <p>My name is ${username}, I'm ${age} years old, my birthday is ${d
Matplotlib概述 In [1]: import numpy as np import matplotlib.pyplot as plt #pyplot是matplotlib的画图的接口 %matplotlib inline 魔法指令,作用:省略之后的plt.show()的步骤 In [3]: %matplotlib inline 1.基本画图 In [6]: plt.plot([1,2,3,4,5],[1,4,9,16,25])#折线图,取值范围会自动设置 plt.xlabe
Spring Boot非常适合web应用程序开发.可以使用嵌入式Tomcat.Jetty.Undertow或Netty创建自包含的HTTP服务器.大多数web应用程序使用spring-boot-starter-web模块来快速启动和运行.您还可以选择使用spring-boot-starter-webflux模块来构建反应性web应用程序. 1.Spring Web MVC框架 Spring Web MVC框架(通常简称为“Spring MVC”)是一个丰富的“模型-视图-控制器”Web框架.Sp