缥缈冬日

文章
2
资源
0
加入时间
2年10月17天

Python学习笔记——私有化一、类中的私有化

一、类中的私有化类中有私有属性,私有方法,对外保密,也不会被子类继承。1、私有属性下面我们就写个类。class test(object): """docstring for test""" def __init__(self): super(test, self).__init__() self.__num = 100私有属性__num,下面我们从外面

SpringBoot异常:IDEA+SpringBoot+Mybatis使用generatorConfig.xml生成xml,Maven打包异常

IDEA+SpringBoot+Mybatis项目,使用generatorConfig.xml生成xml在Maven打包的时候出现异常在maven package打包时,竟然运行了generatorConfig.xml,把已经修改的java类和xml原件覆盖掉了,导致问题出现了解决办法我是把generatorConfig.xml的table配置改为如下:<!-- 相关表的配置 -->...