Hi Marten,
first of all, thanks for your reply. For the entry-point stuff etc. I sticked to that: http://www.harezmi.com.tr/allowing-roles-without-defining-them-in-intercept-url-element/?lang=en,...
Type: Posts; User: johanneshiemer; Keyword(s):
Hi Marten,
first of all, thanks for your reply. For the entry-point stuff etc. I sticked to that: http://www.harezmi.com.tr/allowing-roles-without-defining-them-in-intercept-url-element/?lang=en,...
Hi,
I am currently trying to implement a login scenario for a REST API based on Spring Security. As the API needs to be able to allow cross domain logins, I am currently struggeling with the...
Hi,
a good approach is taking spring security for that. There a numerous of examples out there if you google for it.
Hi,
I have a question regarding a form. The scenario is as follows: I have a form, where the user should select the values of a Many-To-Many relationships he tries to related created object to...
Hi Mark,
yes and an interesting fact is, that if you take a look at my ComposeListener above you can see the second var: private Job job;. If I put the variable into the onMessage(Message...
Hi,
as I got not reply yet from Dave, I kept on digging. An interesting thing I found is, that each Consumer gets a separate message, but when converting the message from JSON to object the error...
Hi Dave,
thanks a lot for your response. First of all here is my implementation of the amqpListener:
@Component
public class ComposeListener implements IComposeListener {
private...
Hi,
me again. I am beginning to think that this is a bug. It is quite easy to reproduce the issue again and again.
Could anyone of the team please take a look at it?
Hi,
I kept on working on the stuff. I figured out some quite interesting things. First of all the behavior is completely right if I remove the following piece of code:
...
Hi Mark,
coming back, I have some issues with my two consumers. Essentially both consumers are receiving the same message. Taking a look here:...
Hi Mark,
yes. And I think I found the solution to my problem. The thing was I mixed up concurrentConsumers with prefetchCount. What I initially tried to achieve was having 2 composer consumers and...
Hi,
I have question regarding a weird behavior of the messageListener();. As the reference manual refers, the messageListener is asynchronous. I defined to different queues and routing keys, which...
Anyone else here has an idea, or a proper solution how to solve it?
Hi Jacek,
I am having the same issue.
One the server side I defined some errors, which a relevant for my project. These errors are put into an object named ErrorType. A simplified example looks...
Hi,
here you go: http://stackoverflow.com/questions/2704099/status-messages-on-the-spring-mvc-based-site-annotation-controller
Hi,
when it's working, what is your issue?
Hi Artswan,
which kind of data are you trying to get via post? A full object?
Hi Keith,
in my opinion you should convert your object to JSON in the controller, provide via ViewModel and then parse with JQuery. Another approach valid for the long run (support filtering/paging...
Hi byte23,
it is the way Jackson is handling the lazy loading. JAXB for example is using the list of lazy loaded properties differently. If the list is empty, it is not attached to the output....
Could you show the configuration of your rabbitTemplate? Seems you are missing the configuration for your converter..
Hi,
try setting:
@RequestMapping (value="/home/index")
public String displayHomepage(Map<String, Object> model)
{
model.put("EXAMPLE_TEXT", "THIS IS HOME PAGE");
Hi byte23,
the same issue you are facing nailed me two days a couple of weeks ago. I you are not able to drop the behavior of lazy-loading there are only two options:
You transfer your entity...
Hi,
I moved my project from hibernate 3.6.0 to hibernate 4 today. After completing the migration I am stuck with an annoying issue. When I try load data in my BaseEntity:
@SuppressWarnings({...
Hi,
it is me again with an additional report towards building an API for a business data model. Today I started building the API based on JSON. The first issue I ran into, was the difficulty to map...
Hi,
I am currently trying to extend my Spring MVC application towards an API, which support either JSON or XML. After reading a bit, and doing some stuff with both of them, I am now facing the point...