Spring Projects Issues
Spring Projects Issues
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be...
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented Good catch. However, you don't actually need the explicit underscore, do you?
**[kizimini](https://jira.spring.io/secure/ViewProfile.jspa?name=kizimini)** commented What I want to do is generating a specification based on the json string. The string may be {"user.dept.name":"aaa"}, {"userDeptName":"aaa"}, {"user.deptName":"aaa"}, or {"userDept.name":"aaa"}, I am not sure about...
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be...
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented That's good feedback and we've been thinking about splitting up Commons for quite a while already, we've just never been sure where to draw the lines as...
**[Benjamin Schmeling](https://jira.spring.io/secure/ViewProfile.jspa?name=javatar81)** commented To clarify the project structure. There are at least two artifacts: * Service-api.jar (Java Interfaces for all services offered by Service-impl.jar. These interfaces use Page as return...
**[Oliver Drotbohm](https://jira.spring.io/secure/ViewProfile.jspa?name=olivergierke)** commented If I get you right, your API project could just include Spring Data Commons and manually exclude `spring-core` and `spring-beans` and then just use `Page` and `Pageable`,...
**[Benjamin Schmeling](https://jira.spring.io/secure/ViewProfile.jspa?name=javatar81)** commented Yes that would be acceptable for my scenario. To see whether it is possible we must analyse all dependencies from Page and Pageable. I've learned that with...
**[Benjamin Schmeling](https://jira.spring.io/secure/ViewProfile.jspa?name=javatar81)** commented I've collected a list of interfaces which would be interesting candidates for a separate api jar, to get a feeling on how many interfaces we are talking...
**[Benjamin Schmeling](https://jira.spring.io/secure/ViewProfile.jspa?name=javatar81)** commented In the meantime, I've tested your "manual exclusion approach" with the new 2.0 version. I've excluded spring-core and spring-beans from the data-commons dependency in my example projects...