千家信息网

springboot-mavn配置动态环境

发表于:2025-01-31 作者:千家信息网编辑
千家信息网最后更新 2025年01月31日,初识springboot目录结构体如下 application.properties文件内容 spring.profiles.active=@profiles.active@
千家信息网最后更新 2025年01月31日springboot-mavn配置动态环境

初识springboot
目录结构体如下

    application.properties文件内容         spring.profiles.active=@profiles.active@    application-dev.properties文件内容         server.port=8001     application-prod.properties文件内容         server.port=8003    以上配置是为了看不同环境下配置不一样            dev                    true                            dev                        prod                    prod                mybatis                                    src/main/resources                            **/*                                        src/main/resources                            *.xml                *.properties                        true                                    org.springframework.boot            spring-boot-maven-plugin                            org.apache.maven.plugins            maven-compiler-plugin                            1.8                1.8                                        org.apache.maven.plugins            maven-resources-plugin                                                default-resources                    validate                                            copy-resources                                                                target/classes                        false                                                                                    org.apache.maven.plugins            maven-surefire-plugin                            true                                    **/Test*.java                                true                                                    org.apache.maven.plugins            maven-source-plugin                                                package                                            jar-no-fork                                                            1.标记说遇到的坑      当只是配置了profiles时是不起作用的,只有增加了对应的resources标签启动打包才有作用。
0