- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
也许您可以帮助我解决这个问题:
我正在创建一个Grails项目3.0.10版本,并希望该项目作为Eureka Client运行。我正在使用Spring Boot 1.3.1.RELEASE,并且正在尝试使用Spring Cloud Angel.SR4版本。
我有一个运行良好的Java项目,但是当尝试应用依赖项并运行我的Grails应用程序时,它会引发一些问题:
这是我用于项目的gradle.build文件:
buildscript {
ext {
grailsVersion = project.grailsVersion
// I have added this line
springBootVersion = '1.3.1.RELEASE'
}
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
classpath "org.grails.plugins:hibernate:4.3.10.5"
}
}
plugins {
id "io.spring.dependency-management" version "0.4.2.RELEASE"
}
version "0.1"
group "demograilsclient"
apply plugin: "spring-boot"
apply plugin: "war"
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: "org.grails.grails-web"
ext {
grailsVersion = project.grailsVersion
gradleWrapperVersion = project.gradleWrapperVersion
}
repositories {
// I have added those two lines
mavenCentral()
jcenter()
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
// I have added those two lines
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
}
dependencyManagement {
imports {
mavenBom "org.grails:grails-bom:$grailsVersion"
// I have added this line
mavenBom 'org.springframework.cloud:spring-cloud-starter-parent:Angel.SR4'
}
applyMavenExclusions false
}
dependencies {
// Spring cloud dependencies
compile("org.springframework.cloud:spring-cloud-starter-config")
compile("org.springframework.cloud:spring-cloud-starter-eureka")
// not modified
compile "org.springframework.boot:spring-boot-starter-logging"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "org.springframework.boot:spring-boot-autoconfigure"
compile "org.springframework.boot:spring-boot-starter-tomcat"
compile "org.grails:grails-plugin-url-mappings"
compile "org.grails:grails-plugin-rest"
compile "org.grails:grails-plugin-interceptors"
compile "org.grails:grails-plugin-services"
compile "org.grails:grails-plugin-datasource"
compile "org.grails:grails-plugin-databinding"
compile "org.grails:grails-plugin-async"
compile "org.grails:grails-web-boot"
compile "org.grails:grails-logging"
compile "org.grails.plugins:hibernate"
compile "org.grails.plugins:cache"
compile "org.hibernate:hibernate-ehcache"
runtime "com.h2database:h2"
testCompile "org.grails:grails-plugin-testing"
testCompile "org.grails.plugins:geb"
console "org.grails:grails-console"
}
task wrapper(type: Wrapper) {
gradleVersion = gradleWrapperVersion
}
server:
port: 0
info:
component: Grails App
eureka:
instance:
lease-renewal-interval-in-seconds: 10
metadata-map:
instanceId: ${vcap.application.instance_id:${spring.application.name}:${spring.application.instance_id:${random.value}}}
client:
registry-fetch-interval-seconds: 5
service-url:
defaultZone: http://localhost:8761/eureka/
---
grails:
profile: web-api
codegen:
defaultPackage: demograilsclient
info:
app:
name: '@info.app.name@'
version: '@info.app.version@'
grailsVersion: '@info.app.grailsVersion@'
spring:
groovy:
template:
check-template-location: false
.....
... contine >>
package demograilsclient
import grails.boot.GrailsApp
import grails.boot.config.GrailsAutoConfiguration
import org.springframework.boot.autoconfigure.SpringBootApplication
import org.springframework.cloud.netflix.eureka.EnableEurekaClient
@SpringBootApplication
@EnableEurekaClient
class Application extends GrailsAutoConfiguration {
static void main(String[] args) {
GrailsApp.run(Application, args)
}
}
grails run-app
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':bootRun'.
> A problem occurred starting process 'command 'C:\program files\Java\jdk1.8.0_6
0\bin\java.exe''
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug
option to get more log output.
BUILD FAILED
Total time: 20.374 secs
最佳答案
Angel。*和Spring Boot 1.3.x不兼容。
关于spring - Spring Cloud Angel.SR4和Grails 3.0.9无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34501851/
我在阅读 linux/arch/arm/boot/compressed/head.S 我想通了天使靴。第一次接触这个词 #ifndef CONFIG_CPU_V7M /*
我正在尝试从网站 https://angel.co/bloomfire 抓取数据 import requests from bs4 import BeautifulSoup res = request
我试图运行 Visual Studio 2010 和 Android 的“San-angeles”示例,所以当我双击 .sln 文件时,我收到了 2 条警告: 1) C:\vs-android_sam
我开始学习 android NDK,但我立即遇到了问题。 我已经构建了工具链(这比我预期的要长很多!!)并且我已经毫无问题地编译了 C++ 代码,现在我正在尝试构建 java 代码。 我马上就遇到了问
我有 CPLEX 优化工作室 安装在我的 Ubuntu 机器上,我正在使用 docplex成功的模型模块。现在我必须使用 Cpo型号来自 docplex.cp.model我有错误: CpoExcept
我编写了一个函数,以 HH:MM A 格式返回 PST/PDT 中的当前时间(例如上午 12:04) function getTimeStr() { var currentTime = momen
将我的移动应用程序开发转移到 Flutter 后,我现在正在尝试使用 Dart 作为我的主要服务器端语言。在应用程序和服务器上使用单一编码语言的生产力优势是相当可观的。为此,我设置了一个带有 Ngin
也许您可以帮助我解决这个问题: 我正在创建一个Grails项目3.0.10版本,并希望该项目作为Eureka Client运行。我正在使用Spring Boot 1.3.1.RELEASE,并且正在尝
我的公司正在使用 Spring Boot 和 Spring Cloud OSS,并且有许多 java spring-boot 服务向 Eureka 报告自身并从 ConfigServer 获取其配置覆
我的服务器向我发送格式为“美国/洛杉矶”的时区。在客户端,我有一个时间需要在那个时区显示。答案将是“PST”或“PDT”,具体取决于给定时间的夏令时。我该如何进行转换? 我在使用 Java ME(准确
我是一名优秀的程序员,十分优秀!