无法从 Grails 应用程序中的 Github Api 获取数据
在github.com/jeffbrown/tauseefahmedgithubapi查看项目。
src/main/groovy/tauseefahmedgithubapi/GitHubClient.groovy
package tauseefahmedgithubapi
import io.micronaut.http.annotation.Get
import io.micronaut.http.annotation.Header
import io.micronaut.http.client.annotation.Client
import static io.micronaut.http.HttpHeaders.USER_AGENT
@Client('https://api.github.com/')
interface GitHubClient {
@Get('/orgs/{org}/repos')
@Header(name = USER_AGENT, value = 'Micronaut Demo Application')
List<GitHubRepository> listRepositoriesForOrginazation(String org)
}
src/main/groovy/tauseefahmedgithubapi/GitHubRepository.groovy
package tauseefahmedgithubapi
import io.micronaut.core.annotation.Introspected
@Introspected
class GitHubRepository {
String name
}
grails-app/init/tauseefahmedgithubapi/BootStrap.groovy
package tauseefahmedgithubapi
import org.springframework.beans.factory.annotation.Autowired
class BootStrap {
@Autowired
GitHubClient client
def init = { servletContext ->
def repos = client.listRepositoriesForOrginazation('micronaut-projects')
for(def repo : repos) {
log.info "Repo Name: ${repo.name}"
}
}
def destroy = {
}
}
在应用程序启动时,您可能会看到如下输出:
2021-06-28 13:03:16.834 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: static-website
2021-06-28 13:03:16.836 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: presentations
2021-06-28 13:03:16.836 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-core
2021-06-28 13:03:16.836 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-profiles
2021-06-28 13:03:16.836 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-guides-old
2021-06-28 13:03:16.836 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-examples
2021-06-28 13:03:16.836 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: static-website-test
2021-06-28 13:03:16.836 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-docs
2021-06-28 13:03:16.836 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-test
2021-06-28 13:03:16.836 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-kotlin
2021-06-28 13:03:16.836 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-spring
2021-06-28 13:03:16.836 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-oauth2
2021-06-28 13:03:16.836 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-liquibase
2021-06-28 13:03:16.836 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-flyway
2021-06-28 13:03:16.836 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-elasticsearch
2021-06-28 13:03:16.837 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-graphql
2021-06-28 13:03:16.837 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-grpc
2021-06-28 13:03:16.837 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-kafka
2021-06-28 13:03:16.837 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-netflix
2021-06-28 13:03:16.837 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-groovy
2021-06-28 13:03:16.837 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-micrometer
2021-06-28 13:03:16.837 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-sql
2021-06-28 13:03:16.837 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-mongodb
2021-06-28 13:03:16.837 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-redis
2021-06-28 13:03:16.837 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-neo4j
2021-06-28 13:03:16.837 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-rabbitmq
2021-06-28 13:03:16.837 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-aws
2021-06-28 13:03:16.837 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-rss
2021-06-28 13:03:16.837 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-gcp
2021-06-28 13:03:16.838 INFO --- [ restartedMain] tauseefahmedgithubapi.BootStrap : Repo Name: micronaut-kubernetes