Skip to content

Instantly share code, notes, and snippets.

@eugenp
Created October 8, 2011 09:33
Show Gist options
  • Select an option

  • Save eugenp/1272066 to your computer and use it in GitHub Desktop.

Select an option

Save eugenp/1272066 to your computer and use it in GitHub Desktop.
Testing the Service Layer - sample Service
@Service
public class FooService implements IFooService{
@Autowired
IFooDAO dao;
@Override
public Long create( final Foo entity ){
return this.dao.create( entity );
}
}
@eugenp

eugenp commented Feb 14, 2012

Copy link
Copy Markdown
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment