GithubHelp home page GithubHelp logo

nsdiv / spring-boot-java8-java7-prop-loading Goto Github PK

View Code? Open in Web Editor NEW
0.0 3.0 0.0 156 KB

Issue between Java 8 and Java 7. Properties files loading precedence

License: MIT License

Java 100.00%

spring-boot-java8-java7-prop-loading's Introduction

Found a bug in spring boot. The precedence of loading the profiles is reversed when I switch between JAVA 7 and JAVA 8. Reference to git issue - spring-projects/spring-boot#4111

Steps to reproduce

  • set JAVA_HOME to java 1.7 (I'm using 1.7.0_67)
  • run mvn clean install. Tests pass.
  • set JAVA_HOME to java 1.8 (I'm using 1.8.0_60)
  • run mvn clean install. Tests fail.

Description of Issue

There are two profiles that are loaded - default and test.

Here is the application.yml file

spring:
  profiles: default

rest:
  connectionTimeoutMillis: 20000
  readTimeoutMillis: 60000
  maxConnectionsPerHost: 25
  maxTotalConnections: 25
  httpProxyEnabled: false
  httpProxyHost: localhost
  httpProxyPort: 8888
---
spring:
  profiles: test

rest:
  connectionTimeoutMillis: 30000

Followed by an override file application-test.properties

rest.connectionTimeoutMillis: 40000

While running JAVA 7, the value for rest.connectionTimeoutMillis comes as 40000. When you switch to JAVA 8, the value comes out as 30000.

spring-boot-java8-java7-prop-loading's People

Contributors

nsdiv avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.