«spring-boot» 태그된 질문

Spring Boot는 최소한의 번거 로움없이 Spring 기반의 프로덕션 급 애플리케이션과 서비스를 쉽게 만들 수있는 프레임 워크입니다. 경험이 풍부한 Spring 사용자를 위해 설계된 Spring 플랫폼에 대한 의견을 수렴합니다.

3
스프링 부트-부모 pom이 이미있을 때 부모 pom
이미 필요한 부모 POM이있는 프로젝트에 스프링 부트 부모 pom을 포함시키는 데 권장되는 특정 접근 방법이 있습니까? 조직의 부모로부터 확장해야하는 프로젝트에 권장하는 사항 (이것은 매우 일반적이며 대부분의 프로젝트는 피더 저장소에 따라 Maven Central에 게시됩니다). 대부분의 빌드 작업은 실행 가능한 JAR 작성 (예 : 임베디드 Tomcat / Jetty 실행)과 관련이 있습니다. 부모로부터 …

9
실행 가능한 jar에 사용할 기본 클래스를 Spring Boot에 알리려면 어떻게합니까?
Execution default of goal org.springframework.boot:spring-boot-maven-plugin:1.0.1.RELEASE:repackage failed: Unable to find a single main class from the following candidates 내 프로젝트에는 main메소드 가있는 둘 이상의 클래스가 있습니다. Spring Boot Maven 플러그인에 어떤 클래스를 기본 클래스로 사용해야하는지 어떻게 알 수 있습니까?

17
스프링 부트-초기 데이터로드
응용 프로그램이 시작되기 전에 초기 데이터베이스 데이터를로드하는 가장 좋은 방법이 무엇인지 궁금합니다. 내가 찾고있는 것은 H2 데이터베이스를 데이터로 채울 무언가입니다. 예를 들어, / users로 이동하여 사용자에게 액세스 할 수있는 도메인 모델 "User"가 있지만 처음에는 데이터베이스에 사용자가 없으므로 사용자를 만들어야합니다. 어쨌든 데이터베이스를 자동으로 데이터로 채울 수 있습니까? 현재 컨테이너에 의해 인스턴스화되고 …

16
스프링 부트 애플리케이션에 컨텍스트 경로 추가
프로그래밍 방식으로 Spring Boot 응용 프로그램 컨텍스트 루트를 설정하려고합니다. 컨텍스트 루트의 이유는 앱에 액세스 localhost:port/{app_name}하고 모든 컨트롤러 경로가 앱에 추가되기를 원 하기 때문입니다. 다음은 웹 응용 프로그램의 응용 프로그램 구성 파일입니다. @Configuration public class ApplicationConfiguration { Logger logger = LoggerFactory.getLogger(ApplicationConfiguration.class); @Value("${mainstay.web.port:12378}") private String port; @Value("${mainstay.web.context:/mainstay}") private String context; private Set<ErrorPage> …

27
스프링 부트 : EmbeddedServletContainerFactory 빈 누락으로 인해 EmbeddedWebApplicationContext를 시작할 수 없음
나는 Spring을 완전히 처음 접 했고이 사이트에서 공식 가이드를 시작했습니다. https://spring.io/guides 이 가이드를하고 싶습니다 : https://spring.io/guides/gs/scheduling-tasks/ 다음과 같은 예외가 발생합니다. 2014-02-14 16:25:21.614 INFO 9032 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.scheduling.annotation.SchedulingConfiguration' of type [class org.springframework.scheduling.annotation.SchedulingConfiguration$$EnhancerByCGLIB$$5b48d763] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) …
173 java  spring  spring-boot 

23
정적 컨텐츠를 제공하지 않는 Spring Boot
정적 컨텐츠를 제공하기 위해 Spring-boot 프로젝트를 가져올 수 없습니다. 나는라는 폴더에 배치 한 static아래를 src/main/resources. 그 안에는라는 폴더가 images있습니다. 앱을 패키지하고 실행하면 해당 폴더에 넣은 이미지를 찾을 수 없습니다. 나는에 정적 파일을 넣어 시도했습니다 public, resources그리고 META-INF/resources아무것도 작동하지 않습니다. 나는 항아리 경우 -tvf 내가 파일을 오른쪽 폴더에있는 항아리 안에있는 것을 …

10
스프링 부트 REST 서비스 예외 처리
대규모 REST 서비스 서버를 설정하려고합니다. 우리는 Spring Boot 1.2.1 Spring 4.1.5 및 Java 8을 사용하고 있습니다. 컨트롤러는 @RestController와 표준 @RequestMapping 주석을 구현하고 있습니다. 내 문제는 스프링 부트가 컨트롤러 예외에 대한 기본 리디렉션을로 설정한다는 것 /error입니다. 문서에서 : Spring Boot는 기본적으로 / error 매핑을 제공하여 모든 오류를 합리적인 방식으로 처리하며 서블릿 …

12
스프링 부트 앱이 시작한 직후에 항상 종료되는 이유는 무엇입니까?
이것은 첫 번째 스프링 부트 코드입니다. 불행히도 항상 종료됩니다. 웹 클라이언트가 브라우저에서 일부 데이터를 얻을 수 있도록 계속 실행될 것으로 기대했습니다. package hello; import org.springframework.boot.*; import org.springframework.boot.autoconfigure.*; import org.springframework.stereotype.*; import org.springframework.web.bind.annotation.*; @Controller @EnableAutoConfiguration public class SampleController { @RequestMapping("/") @ResponseBody String home() { return "Hello World!"; } public static void main(String[] …
164 java  spring  spring-boot 

10
스프링 부트의 명령 줄에서 활성 프로파일 및 구성 위치 설정
스프링 부트 응용 프로그램이 있습니다. 내 응용 프로그램-> 개발, 준비 및 생산에 세 가지 프로필이 있습니다. 3 개의 파일이 있습니다 application-development.yml application-staging.yml application-production.yml 내 application.yml 은 안에 src/main/resources있습니다. application.yml에서 활성 프로파일을 다음과 같이 설정했습니다. spring: profiles.active: development 다른 3 개의 프로파일 특정 구성 파일은 C:\config폴더에 있습니다. 일식에 gradle 플러그인을 사용하고 …

14
스프링 부트 제거 Whitelabel 오류 페이지
화이트 라벨 오류 페이지를 제거하려고하는데 "/ error"에 대한 컨트롤러 매핑을 만들었습니다. @RestController public class IndexController { @RequestMapping(value = "/error") public String error() { return "Error handling"; } } 그러나 지금이 오류가 발생합니다. Exception in thread "AWT-EventQueue-0" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'requestMappingHandlerMapping' defined in class path resource [org/springframework/web/servlet/config/annotation/DelegatingWebMvcConfiguration.class]: Invocation …

9
문자열 목록을위한 Spring Boot yaml 구성
application.yml 파일에서 문자열 배열을로드하려고합니다. 이것은 구성입니다 : ignore: filenames: - .DS_Store - .hg 이것은 클래스입니다 : @Value("${ignore.filenames}") private List<String> igonoredFileNames = new ArrayList<>(); 동일한 클래스에는 다른 구성이 잘로드됩니다. 내 yaml 파일에 탭이 없습니다. 여전히 다음 예외가 발생합니다. Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'ignore.filenames' in string value "${ignore.filenames}"
149 spring-boot 

8
Tomcat으로 Spring Boot를 시작할 때 사용자 이름과 비밀번호는 무엇입니까?
Spring Boot를 통해 Spring 응용 프로그램을 배포하고 액세스 할 localhost:8080때 인증해야하지만 사용자 이름과 비밀번호는 무엇입니까? 이 tomcat-users파일을 파일 에 추가하려고 시도했지만 작동하지 않았습니다. <role rolename="manager-gui"/> <user username="admin" password="admin" roles="manager-gui"/> 이것이 응용 프로그램의 시작점입니다. @SpringBootApplication public class Application extends SpringBootServletInitializer { public static void main(String[] args) { SpringApplication.run(Application.class, args); } @Override …


17
스프링 부트-관리 형이 아님
스프링 부트 + JPA를 사용하고 서비스를 시작하는 동안 문제가 발생했습니다. Caused by: java.lang.IllegalArgumentException: Not an managed type: class com.nervytech.dialer.domain.PhoneSettings at org.hibernate.jpa.internal.metamodel.MetamodelImpl.managedType(MetamodelImpl.java:219) at org.springframework.data.jpa.repository.support.JpaMetamodelEntityInformation.<init>(JpaMetamodelEntityInformation.java:68) at org.springframework.data.jpa.repository.support.JpaEntityInformationSupport.getMetadata(JpaEntityInformationSupport.java:65) at org.springframework.data.jpa.repository.support.JpaRepositoryFactory.getEntityInformation(JpaRepositoryFactory.java:145) at org.springframework.data.jpa.repository.support.JpaRepositoryFactory.getTargetRepository(JpaRepositoryFactory.java:89) at org.springframework.data.jpa.repository.support.JpaRepositoryFactory.getTargetRepository(JpaRepositoryFactory.java:69) at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:177) at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.initAndReturn(RepositoryFactoryBeanSupport.java:239) at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:225) at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:92) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1625) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1562) 다음은 Application.java 파일입니다. @Configuration @ComponentScan @EnableAutoConfiguration(exclude = …

10
Java Spring Boot : 앱 루트 (“/”)를 index.html에 매핑하는 방법은 무엇입니까?
저는 Java와 Spring을 처음 사용합니다. 내 앱 루트 http://localhost:8080/를 정적으로 매핑하려면 어떻게 index.html해야합니까? 내가 http://localhost:8080/index.html잘 작동 한다면 . 내 앱 구조는 다음과 같습니다 내 config\WebConfig.java모습은 다음과 같습니다. @Configuration @EnableWebMvc @ComponentScan public class WebConfig extends WebMvcConfigurerAdapter { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/**").addResourceLocations("/"); } } 추가하려고 registry.addResourceHandler("/").addResourceLocations("/index.html");했지만 실패합니다.
133 java  spring  spring-boot 

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.