All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.uniroma2.art.semanticturkey.configurations.STRequestContextConfiguration Maven / Gradle / Ivy

There is a newer version: 13.0
Show newest version
package it.uniroma2.art.semanticturkey.configurations;

import it.uniroma2.art.semanticturkey.services.STServiceContext;
import it.uniroma2.art.semanticturkey.services.http.STServiceHTTPContext;

import org.springframework.context.annotation.Bean;

// this was one attempt at a Spring configuration for ST through Java code. We disabled it and started to work
// with XML

// @Configuration
public class STRequestContextConfiguration {
	/* Maybe this bean definition should be moved to core framework somehow */
	@Bean
	public STServiceContext stservicecontext() {
		return new STServiceHTTPContext();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy