Как связать memcached с Spring MVC API для получения и установки данных - PullRequest
0 голосов
/ 10 октября 2018

Я новичок в memcached и Spring MVC, я пытаюсь создать остальные API, которые будут устанавливать некоторые значения в memcached.Который я тоже могу получить.Но я не получаю правильный способ подключения к memcached.

Конфигурация потребителя:

import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;   import com.btmatthews.springboot.memcached.EnableMemcached;

@EnableMemcached
@Configuration
@EnableWebMvc
@ComponentScan(basePackages = "msg91.consumers.consumer")
public class consumerConfiguration {

}

Класс ConsumerInitializer:

import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer;

public class consumerInitializer  extends AbstractAnnotationConfigDispatcherServletInitializer {

    @Override
    protected Class<?>[] getRootConfigClasses() {
        return new Class[] { consumerConfiguration.class };
    }

    @Override
    protected Class<?>[] getServletConfigClasses() {
        return null;
    }

    @Override
    protected String[] getServletMappings() {
        return new String[] { "/" };
    }

}

Класс контроллера:

@RestController
public class consumerController {
    @Autowired
    private MemcachedClient memcachedClient;

    @RequestMapping(value="/queues/{queueName}/thread-counts/{threadCount}", method = RequestMethod.POST)
    public void setThreadCount(@PathVariable String queueName, @PathVariable int threadCount) {
        System.out.println("Queue name is "+queueName);
        System.out.println("Thread count is "+threadCount);     
        memcachedClient.set(queueName, 0, threadCount);//Setting the values in memcache which I get in api
    }

    @RequestMapping(value="/queues/{queueName}/thread-counts", method = RequestMethod.GET)
    public void getThreadCount(@PathVariable String queueName) {
        System.out.println("Queue value is"+queueName);
        int threadCount = (Integer)memcachedClient.get(queueName);
        System.out.println("Thread count for " + queueName + " is " + threadCount);
    }
}

Spring-dispatcher-servlet.xml:

<bean name="defaultMemcachedClient" class="com.google.code.ssm.CacheFactory">
  <property name="cacheClientFactory">
        <bean class="com.google.code.ssm.providers.xmemcached.MemcacheClientFactoryImpl" />
  </property>
  <property name="addressProvider">
        <bean class="com.google.code.ssm.config.DefaultAddressProvider">
 <property name="address" value="127.0.0.1:11211" />
  </bean>
  </property>

Не работает, выдает ошибку:

Сервлет [spring-dispatcher] в веб-приложении [/ consumer-api]исключение load () java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet

Я не могу правильно указать путь к memcache или не могу подключиться к memcached.Пожалуйста, помогите мне решить эту проблему.

...