The Spring Framework is an open source application framework for the Java platform, designed to make Java SE/Java EE technologies easier to use.

learn more… | top users | synonyms (1) | spring jobs

-1
votes
0answers
39 views
+50

ignorecase in criteria builder in JPA

Friends How can we do a ignorecase in the criteria builder if I have private final criteriaBuilder cb then i can only use cb.asc or cb.desc but not the ignorecase Please suggest
3
votes
1answer
77 views
+150

How to make CommonsMultipartFile from absolute file path?

I'm creating an API for my application. In the GUI browser based application the file is uploaded via a form submission. So I simply do CommonsMultipartFile file = request.getFile(myfile). However, ...
2
votes
1answer
117 views
+50

spring queryForInt method throws exception invalid column type

I am using queryForInt() method of spring JDBC template. It has two arguments: query string and second arguments for parametrized SQL. I have sql query like: select count(*) from table X where x.x1=? ...
0
votes
1answer
64 views
+50

Spring MVC @PathVariable with dot (.) is getting truncated

This is continuation of question Spring MVC @PathVariable getting truncated Spring forum states that it has fixed(3.2 version) as part of ContentNegotiationManager. see the below link. ...