domain « Web Service « Spring Q&A





1. Spring Controller: use domain objects as @RequestBody    stackoverflow.com

I have a domain object class User (it is a JPA entity):

@Entity
public class User {
   private String name;
   private boolean enabled = true;
   // getters/setters
}
And ...

2. AOP: Domain model to Axis beans and vice versa    stackoverflow.com

This is a design question for those who are hopefully a bit more familiar with Spring/AOP than myself. I have a set of domain model beans populated from various web forms. I ...

3. Spring Restful, Post multiple formats like json/xml/domain object into same action    stackoverflow.com

I am writing a Spring Restful webservices application using Spring MVC. I have used content negotiating viewer to respond multiple data formats for eg. If some one requests a URL with ...

4. Recomended practice for service layer from domain object    forum.springsource.org

Recomended practice for service layer from domain object Using spring for service layer. What is the best practice for accessing service layer from domain object. My particular issue is I have ...

5. Best Practices with services and domain objects when wanting inheritance    forum.springsource.org

Best Practices with services and domain objects when wanting inheritance Say you have some domain objects that inherit from each other. For example, at the top you have an abstract class ...

6. service-layer interface for domain object binding    forum.springsource.org

service-layer interface for domain object binding Hi all, It'll probably come home to me one of these days that if I want an answer I should post a straightforward question rather ...

7. EJB service layer non-OO / Anemic Domain Model    forum.springsource.org

EJB service layer non-OO / Anemic Domain Model Hi, This problems isn't specific to Spring, but the same problem seems evident in the Spring PetClinic sample code. It's especially evident in ...

8. Anemic Domain Model and Service facade    forum.springsource.org

Anemic Domain Model and Service facade Martin Fowler makes a very good point in his blog entry http://martinfowler.com/bliki/AnemicDomainModel.html about Anemic Domain Models: i.e. you should try to put all your business ...

9. How to Refactor Services Logic Into Domain Logic    forum.springsource.org

I recently read a post on Ken Egervari's blog about refactoring services logic into domain logic. I found it to be most enlightening and it is very much in alignment with ...





10. Accessing spring services from hibernated domain objects    forum.springsource.org

Accessing spring services from hibernated domain objects All, Does anyone have recommendations for getting dependency injection of spring services to work for domain objects that are persisted by hibernate? I have ...

11. Transform CO into Domain Object: Web or Service?    forum.springsource.org

Transform CO into Domain Object: Web or Service? Suppose you have a service method: EmployeeService.add(Employee emp); Now let's imagine you have just obtained an EmployeeCO command object from the web form ...

12. Converting Domain Objects to SOAP Response    forum.springsource.org

Converting Domain Objects to SOAP Response I'm rather new to Spring Web Services but pretty solid with Spring and Web Flow. I'd like to use WS in a project I'm working ...

13. Issue with different AplicationContext.xml files for service/domain/presentation tier    forum.springsource.org

Issue with different AplicationContext.xml files for service/domain/presentation tier Hi, I'm facing problem while accessing service bean in action classes. It is null even though it is initialised and being set (using ...

14. Domain change causes my webapp URL to misbehave    forum.springsource.org

Domain change causes my webapp URL to misbehave Hi all! I have developed webapp and parked it on a domain for the first time. I think I had to do something ...

15. ACl Service with GUID as the id for the domain classes    forum.springsource.org

Hello, I have posted the same question twice in this forum last week. I'm restricted to using a GUIID as the ID for our domain classes. (Oracle SYS_GUID () as the ...

16. Exception for single JDBC-JNDI for two web applications under same glassfish domain    forum.springsource.org

Jun 8th, 2010, 09:07 AM #1 krupakar View Profile View Forum Posts Private Message Junior Member Join Date Jun 2010 Posts 3 Exception for single JDBC-JNDI for two web applications under ...





17. Spring-WS client domain classes    coderanch.com