我正在尝试使用spring cloud配置,1.3.0.release版本,我成功地启动了服务器
curl localhost:8888/foo/development returns
{"name":"foo","profiles":["development"],"label":null,"version":null,"state":null,"propertySources":[{"name":"https://github.com/spring-cloud-samples/config-repo/foo-development.properties","source":{"bar":"spam","foo":"from foo development"}},{"name":"https://github.com/spring-cloud-samples/config-repo/foo.properties","source":{"democonfigclient.message":"hello spring io","foo":"from foo props"}},{"name":"https://github.com/spring-cloud-samples/config-repo/application.yml","source":{"info.description":"Spring Cloud Samples","info.url":"https://github.com/spring-cloud-samples","eureka.client.serviceUrl.defaultZone":"http://localhost:8761/eureka/","foo":"baz"}}]}
我尝试用下面的pom.xml构建简单的客户端
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework</groupId>
<artifactId>gs-spring-config</artifactId>
<version>0.1.0</version>
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-parent</artifactId>
<version>Brixton.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<!-- tag::tests[] -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- end::tests[] -->
</dependencies>
<properties>
<java.version>1.8</java.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
然后我使用mvn spring-boot:run,它总是停止
如果我添加依赖项
spring-boot-starter-web
它可以启动,但当我访问localhost:8080/env时,它总是返回404,这里缺少什么?
Hello.java
package hello;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.RequestMapping;
@RestController
public class HelloController {
@RequestMapping("/")
public String index() {
return "Hello World";
}
}
如评论中所述,包括:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
我正在尝试使用spring jsf hibernate在tomcat中运行应用程序,但出现以下错误: SEVERE:异常将上下文初始化事件发送到类org.springframework.web.context.ContextLoaderListener的监听器实例org.springframework.beans.factory.Bean定义存储异常:意外异常解析来自ServletContext资
我有一个小Spring启动Web应用程序(可执行罐),它在application.properties文件中有一些自定义属性。我的目标是能够在运行时动态更改这些属性,而不必运行构建/部署或重新启动java进程。sping-Cloud-starter-config项目似乎非常适合于此(尽管我没有使用配置服务器),但我遇到了以下问题: 在我的pom里。xml I包括对spring boot start
请帮忙。我正在使用Spring Cloud Gateway,我不断收到以下Cors错误: CORS策略阻止从源http://localhost:4200在http://localhost:8084/users/files处访问XMLHttpRequest:对预飞行请求的响应无法通过权限改造检查:请求的资源上不存在“访问控制-允许-源”标头。 这是我的application.yml档案
使用Spring boot 1.4.3.和hibernate 5.0.11对Spring data jpa进行以下配置,我得到SQL错误:-5501,SQLState:42501用户缺乏特权或找不到对象:角色 我的配置有什么问题? 应用程序.属性: ConfigForJPA: } } 控制台2:
我正在使用Spring3.2 mvc框架创建一个应用程序。我正在使用Spring工具套件和Maven。当我将JAR3.1更新到3.2时,在servelet-context.xml和root-context.xml中出现以下错误:-
我正试图按照web上的指南使用Spring Security保护我的网站。 所以在我的服务器端,我有以下类。 我的: 我的控制器: 让我非常困惑的是服务器不响应/方法,而方法工作正常。顺便说一句,我在客户端使用。 例外情况包括: 我在网上搜索了好几天了。还是没有线索。请帮忙。非常感谢