Skip to main content

All Questions

Tagged with
0 votes
1 answer
641 views

How to save json response in jmeter?

Goal: Save the response I am getting from api request to json files. filename needed: name_of_original_file_request_was_sent_with + "_response.json" Until now the jmeter program reads like 6 ...
thatsmycode's user avatar
-2 votes
1 answer
473 views

Problem with Width and Height properity of a image on java

I'm having a problem with the Width and Height Property of an image on java. For some reason the are null. And on the properties of the image, I have the dimensions of the file. I need to control ...
MatheusCandido's user avatar
1 vote
1 answer
354 views

Servlet process data after response was sent

For some reason there are no request headers in HttpServletRequest when I try to acces them in a separate thread like here: new Thread() { public void run() { Enumeration<String> ...
neoexpert's user avatar
  • 459
4 votes
2 answers
3k views

Spring Boot throws ClassNotFoundException with maven dependency for another project

I have Spring Boot project with simple EnvironmentPostProcessor implementation: package com.example.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.env....
catch32's user avatar
  • 18.6k
2 votes
1 answer
2k views

Spring Boot and generated JavaScript/CSS content

I'm trying to migrate a Spring/Maven application to Spring Boot. It uses a maven plugin to generate some JavaScript (in my case handlebars-maven-plugin). This plugin essentially produces generated ...
Mark McLaren's user avatar
  • 11.5k
1 vote
1 answer
2k views

Anti-aliasing in LWJGL 3

I am trying to draw an anti-aliased square in LWJGL 3. I am only drawing 2D sprites and I'm not drawing textures. This answer to a similar question reveals that anti-aliasing in LWJGL must be achieved ...
Jonathan E's user avatar
1 vote
0 answers
226 views

How to post-process other BeanPostProcessor-s in Spring?

I was thinking, that BeanPostProcessor should receive call for each bean in the context. Unfortunately, I found it is not true if other beans are postprocessors too. The code follows: public class ...
Dims's user avatar
  • 51.4k
1 vote
1 answer
1k views

Using post processing effects with box2dlights in libgdx

I'm using libgdx-contribs/postprocessing to add a bloom effect to shapes in my libgdx application. And box2dlights for some lights and shadows. My goal is to render the box2d world and apply the ...
bobbyrne01's user avatar
  • 6,763
0 votes
1 answer
272 views

How do I make a 1D shadow map from an Occlusion Map? Mine becomes white

I'v been working for some Time now in GPU post processing effects for my game, but I'v come to an issue that seems unsolvable, trying to achieve a Top-Down directional light. I have generated an ...
Wicpar's user avatar
  • 195
0 votes
2 answers
8k views

Tomcat 7.0: Error creating bean with name 'org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor

Getting error when starting my Tomcat 7.0: Error creating bean with name 'org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor... ERROR ContextLoader:331 - Context ...
Tadas Davidsonas's user avatar
0 votes
1 answer
229 views

How to use Postprocessing on an awt or swing window

Is it possible to use Post Processing effects like gaussian blur or greyscale effects on an entire JFrame independent from its contents?
Andreas Hartmann's user avatar
0 votes
0 answers
127 views

Running Applet on ServerSide after Successful Upload

I am making an Uploader Which uploads Audio File Now i want following things to be done: Once File is Uploaded to Server an Applet should start on ServerSide Name & other details of Uploaded ...
Mrug's user avatar
  • 5,023
0 votes
2 answers
1k views

Change beans post processing order without explicit configuration

I'm aware of the fact that the order of bean loading is implicitly determined by dependencies and transitive dependencies. Imagine you have a set of annotated beans that provide you with some sort of ...
lisak's user avatar
  • 22k
4 votes
3 answers
3k views

How does Spring's context namespace work?

For example if I declare in my application-context.xml: <context:annotation-config/> I read from the official documentation: The implicitly registered post-processors include ...
Carlos Jaime C. De Leon's user avatar
2 votes
1 answer
2k views

Spring post processors, order, @Required

At work we have a custom ServiceProvider pattern with an annotation for binding services with a spring post-processor. I wonder if i can check if my binding was correctly done, by using @Required. ...
Sebastien Lorber's user avatar