20180724记录今天遇到的问题

1.配置java环境中,path环境变量以前是用分号结尾,现在新的系统,不需要后面加分号

2.idea的lombok插件要装,不然只配置依赖以及@data注解是无法显示get,set方法。

3.fcitx配置工具命令是fcitx-configtool,安装完输入法,如果无法切换输入法,可能的 问题就是没有用到这个配置工具进行输入法的配置。

4.springboot里面的pom.xml

如果要添加插件,在build标签里面加

<build>
<plugins>
    <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
    </plugin>
</plugins>
</build>

猜你喜欢

转载自blog.csdn.net/weixin_30563001/article/details/81192472
今日推荐