I have roo entity with one reference filed:
@RooJavaBean
@RooToString
@RooJpaActiveRecord
public class ActivatedConfiguration {
@NotNull
@OneToOne
@JoinColumn(unique = true, nullable = false)
private Configuration configuration;
...
}
In Spring controller i have annotated mathod with that entity as a parameter:
@RequestMapping(value = "/")
public String startActivation(ActivatedConfiguration activatedConfiguration){
...
}
When i prepared HTML GET request:
http://localhost:8080/app?configuration=1&[...]
spring automagicaly injected that field.
The question is: From where that magic come from ? How can i mock database fetching in my junit tests ?