spring boot的理解
Spring Boot 是所有基于 Spring 开发的项目的起点。Spring Boot 的设计是为了让你尽可能快的跑起来 Spring 应用程序并且尽可能减少你的配置文件。简单来说就是Spring Boot其实不是什么新的框架,它默认配置了很多框架的使用方式,就像maven整合了所有的jar包,spring boot整合了所有的框架。
项目的创建
选择spring intializr,选择java8,创建项目,导入依赖。
登录功能的实现
在导入项目需要的界面html文件之后,我们只需要关注项目本身后台的功能实现
1.要实现新闻管理的功能,在po包内放入实体类用户,以及新闻
public class News{
@Id //主键标识
@GeneratedValue(strategy = GenerationType.IDENTITY)
private long id;
private String title;
@Basic(fetch = FetchType.LAZY)//用到时才会加载
@Lob
private String content;
private String firstPicture;
private String flag;
private String views;
private boolean appreciation;
private bool