A word on toString()
Can you spot the problem?
AccountHolder.java
package com.example.toString;
import java.util.ArrayList;
import java.util.List;
public class AccountHolder {
private String name;
...
Home » All posts
A word on toString()
in
java,
java interview,
stackOverFlow,
StactOverfloError,
toString()
- on March 03, 2017
- No comments
Spring: Be careful when using PropertyPlaceholderConfigurer
in
cant resolve property.,
fail-fast,
load multiple property file,
properties,
properties resolving,
property file in multiple spring context,
PropertyPlaceholderConfigurer,
spring,
spring context
- on February 25, 2017
- No comments
A word on PropertyPlaceholderConfigurer
A few days back one of my juniors came to me and said that when he test his modules separately in JUnit that worked perfectly but when the modules were deployed in Server as a unit, Server fails to start.
So...
Hello, Hexagonal Architecture
in
Adapter pattern,
design pattern,
GOF,
gof pattern,
Hexagonal,
Hexagonal architechture,
java,
java core pattern,
java design pattern,
java pattern,
onion architectural,
orthogonal architecture,
port,
port and hub
- on February 19, 2017
- No comments
Hello Hexagonal Architecture
While developing a software we always craving for Architecture because we want our software adopts future changes easily.
So, Architecture stepped in for maintainability. Here maintainability mean how easily we can...