本文主要是记录在[用户登录]一节中出现的问题: 报错位置是在 if g.user is not None and g.user.is_authenticated(): return redirect(url_for('index')) 问题的原因主要是因为flask-login模块不对,需要安装flask-login==0.2.11,. 参考:源码运行的时候出现:TypeError: 'bool' object is not callable Stack Overflow上有另外的解决方法,我没…
1. 使用静态工厂方法创建Bean,用到一个工厂类 例子:一个Car类,有brand和price属性. package com.guigu.spring.factory; public class Car { private String brand; private double price; public Car(){ } public Car(String brand,double price){ this.brand=brand; this.price=price; } public S…