The Spring Framework is an open source framework for application development on the Java platform.
I have two independent spring batch jobs in the same project because I want to use the same infrastructure-related beans. …
spring spring-batch spring-boot spring-java-configHow do I set X-Frame-Options response header with a value of allow-from using spring java config? http.headers().disable() .addHeaderWriter(…
spring-security http-headers spring-java-config x-frame-optionsI have an already existing client module with apache tiles and thymeleaf, what works well. I wanted to convert it …
spring-mvc spring-boot thymeleaf spring-java-config apache-tilesI was following the samples of Spring LDAP project and was trying to convert xml configuration to Java Configuration. I …
java spring spring-boot spring-java-config spring-ldapI built a java configured Spring MVC application without any XML. I can deploy and start the application on my …
spring maven tomcat maven-tomcat-plugin spring-java-configCurrently i have a Spring xml configuration (Spring 4) which load a properties file. context.properties my.app.service = myService my.…
java spring properties-file spring-java-configIn previous versions of OAuth2 it was possible to add a custom token granter by adding it to the xml …
java spring spring-java-config spring-security-oauth2This problem is relatively well discussed in several blog posts and SO questions. Nevertheless, I wasn't able to find one …
spring spring-mvc spring-security servlet-3.0 spring-java-configI configure a step in XML like this: <batch:step id="slaveStep"> <batch:tasklet> <batch:…
java spring spring-batch spring-java-configHaving a Spring configuration class for async methods as: @Configuration @EnableAsync(proxyTargetClass = true) @EnableScheduling public class AsyncConfiguration { @Autowired private ApplicationContext …
spring asynchronous spring-java-config cglib spring-async