Я пытаюсь подключиться к твиттеру из весеннего загрузочного приложения.Я добавляю значения appId и appSecret в мой файл application.properties.Но я получаю сообщение об ошибке "'spring.social.twitter.appID' - неизвестное свойство.".
build.gradle file
buildscript {
ext {
springBootVersion = '2.0.2.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-
plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group = 'masteringSpringMvc'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-thymeleaf')
compile('org.springframework.boot:spring-boot-starter-web')
compile('org.springframework.social:spring-social-twitter:1.1.2.RELEASE')
testCompile('org.springframework.boot:spring-boot-starter-test')
}
Ниже приведен файл application.properties
spring.thymeleaf.cache=false
spring.social.twitter.appID=apiKey
spring.social.twitter.appSecret=appSecret