«spring» 태그된 질문

Spring Framework는 Java 플랫폼에서 애플리케이션 개발을위한 오픈 소스 프레임 워크입니다. 핵심은 컴포넌트 기반 아키텍처에 대한 풍부한 지원이며, 현재 20 개가 넘는 고도로 통합 된 모듈이 있습니다.


2
application.yml은 환경 변수를 지원합니까?
내 application.yml 구성에서 env 변수를 다음과 같이 사용해 보았습니다. spring: main: show_banner: false --- spring: profiles: production server: address: $OPENSHIFT_DIY_IP port: $OPENSHIFT_DIY_PORT 그러나 env 변수는 해결되지 않습니다. 다른 표기법을 제공해야합니까? Rails에서는 예를 들어 <% = ENV [ 'FOOVAR'] %>를 사용할 수 있습니다. 유일한 대안은 다음과 같이 앱을 실행하는 것입니다. java …
110 java  spring  yaml  spring-boot 

9
Spring 구성 파일에서 Bean의 속성에 Enum 값을 할당하는 방법은 무엇입니까?
다음과 같이 정의 된 독립형 열거 형이 있습니다. package my.pkg.types; public enum MyEnumType { TYPE1, TYPE2 } 이제 해당 유형의 값을 빈 속성에 삽입하고 싶습니다. <bean name="someName" class="my.pkg.classes"> <property name="type" value="my.pkg.types.MyEnumType.TYPE1" /> </bean> ... 그리고 그것은 작동하지 않았습니다 :( Enum을 스프링 빈에 어떻게 주입해야합니까?
109 java  spring 


8
동일한 클래스 내의 메서드에 의한 Spring @Transaction 메서드 호출이 작동하지 않습니까?
저는 Spring Transaction을 처음 사용합니다. 내가 정말 이상하다고 생각한 것, 아마도 나는 이것을 제대로 이해했을 것입니다. 메서드 수준에 대한 트랜잭션을 갖고 싶었고 동일한 클래스 내에 호출자 메서드가 있는데 그게 좋지 않은 것 같습니다. 별도의 클래스에서 호출해야합니다. 나는 그것이 어떻게 가능한지 이해하지 못한다. 누구든지이 문제를 해결하는 방법을 알고 있다면 대단히 감사하겠습니다. …

9
필드를 autowire 할 수 없음 : Spring 부트 애플리케이션의 RestTemplate
시작하는 동안 봄 부팅 응용 프로그램을 실행하는 동안 예외가 발생합니다. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'testController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private org.springframework.web.client.RestTemplate com.micro.test.controller.TestController.restTemplate; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [org.springframework.web.client.RestTemplate] found for dependency: expected at least 1 …

1
Spring @Configuration 클래스 이해
Spring @Autowired 사용법 이해 라는 질문에 따라 Spring Wireing 의 다른 옵션 인 @Configuration클래스에 대한 완전한 지식 기반을 만들고 싶었습니다 . 다음과 같은 스프링 XML 파일이 있다고 가정 해 보겠습니다. <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <import resource="another-application-context.xml"/> <bean id="someBean" class="stack.overflow.spring.configuration.SomeClassImpl"> <constructor-arg value="${some.interesting.property}" /> </bean> <bean id="anotherBean" class="stack.overflow.spring.configuration.AnotherClassImpl"> …

30
이 응용 프로그램에는 / error에 대한 명시 적 매핑이 없습니다.
튜토리얼 https://spring.io/guides/gs/uploading-files/ 수행하기 위해 maven을 사용했습니다. 내가 사용한 모든 코드가 복사되었습니다. 응용 프로그램을 실행할 수 있지만 오류가 발생합니다. Whitelabel 오류 페이지이 응용 프로그램에는 / error에 대한 명시적인 매핑이 없으므로 대체 항목으로 표시됩니다. Tue Jun 30 17:24:02 CST 2015 예기치 않은 오류가 발생했습니다 (유형 = 찾을 수 없음, 상태 = 404). …

3
Spring MVC에서 인터셉터와 필터의 차이점
나는 조금에 대해 혼란 스러워요 Filter및 Interceptor목적. 내가 문서에서 이해했듯이 Interceptor요청 사이에 실행됩니다. 반면에 Filter뷰를 렌더링하기 전에 실행되지만 컨트롤러가 응답을 렌더링 한 후에 실행됩니다. 그렇다면 postHandle()인터셉터와 doFilter()필터 의 차이점은 무엇입니까? 사용해야하는 사용 사례에 대한 모범 사례는 무엇입니까? 이 그림에서 작품 Filter과 Interceptors는 어디입니까?

13
Hibernate LazyInitializationException을 수정하는 방법 : 역할 컬렉션을 지연 초기화하지 못했습니다. 프록시를 초기화 할 수 없습니다-세션 없음
내 봄 프로젝트의 사용자 정의 AuthenticationProvider에서 로그인 된 사용자의 권한 목록을 읽으려고하지만 다음 오류가 발생합니다. org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: com.horariolivre.entity.Usuario.autorizacoes, could not initialize proxy - no Session at org.hibernate.collection.internal.AbstractPersistentCollection.throwLazyInitializationException(AbstractPersistentCollection.java:566) at org.hibernate.collection.internal.AbstractPersistentCollection.withTemporarySessionIfNeeded(AbstractPersistentCollection.java:186) at org.hibernate.collection.internal.AbstractPersistentCollection.initialize(AbstractPersistentCollection.java:545) at org.hibernate.collection.internal.AbstractPersistentCollection.read(AbstractPersistentCollection.java:124) at org.hibernate.collection.internal.PersistentBag.iterator(PersistentBag.java:266) at com.horariolivre.security.CustomAuthenticationProvider.authenticate(CustomAuthenticationProvider.java:45) at org.springframework.security.authentication.ProviderManager.authenticate(ProviderManager.java:156) at org.springframework.security.authentication.ProviderManager.authenticate(ProviderManager.java:177) at org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter.attemptAuthentication(UsernamePasswordAuthenticationFilter.java:94) …

9
Spring Boot JPA-자동 재 연결 구성
좋은 작은 Spring Boot JPA 웹 애플리케이션이 있습니다. Amazon Beanstalk에 배포되며 데이터 유지를 위해 Amazon RDS를 사용합니다. 그러나 자주 사용되지 않으므로 이러한 종류의 예외로 잠시 후 실패합니다. com.mysql.jdbc.exceptions.jdbc4.CommunicationsException : 서버에서 성공적으로 수신 한 마지막 패킷은 79,870,633 밀리 초 전입니다. 서버로 성공적으로 전송 된 마지막 패킷은 79,870,634 밀리 초 전이었습니다. 서버 …


13
스프링 부트 기본 H2 jdbc 연결 (및 H2 콘솔)
내 application.properties에 아무것도 지정하지 않고 mvn spring : run으로 시작할 때 spring-boot가 생성하는 임베디드 H2 데이터베이스에 대한 H2 데이터베이스 콘텐츠를 보려고합니다. 최대 절전 모드 JPA가 테이블을 만드는 것을 볼 수 있지만 데이터베이스 아래의 URL에서 h2 콘솔에 액세스하려고하면 테이블이 없습니다. http://localhost:8080/console/ 다음과 같은 제안이 있습니다. Spring에서 시작된 임베디드 H2 데이터베이스의 내용보기 …
107 java  spring  jpa  h2  spring-boot 

18
인터넷 연결이 없으면 Spring schemaLocation이 실패합니다.
Spring을 사용하고 있으며 application-context.xml다음과 같은 정의가 있습니다. <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:p="http://www.springframework.org/schema/p" xmlns:security="http://www.springframework.org/schema/security" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.1.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-2.0.xsd" > ..... 인터넷 연결이 끊어지면 tomcat이나 jetty를 통해 애플리케이션을 실행할 수 없습니다. 다음을 제공합니다. [main] WARN org.springframework.beans.factory.xml.XmlBeanDefinitionReader - …
107 java  xml  spring  xsd 

16
YAML을 사용하는 Spring @PropertySource
Spring Boot를 사용하면 application.properties 파일을 YAML에 해당하는 파일로 바꿀 수 있습니다. 그러나 나는 내 시험에 걸림돌을 친 것 같다. 내 TestConfiguration(간단한 Java 구성)에 주석을 달면 속성 파일이 필요합니다. 예를 들어 이것은 작동하지 않습니다. @PropertySource(value = "classpath:application-test.yml") 내 YAML 파일에 다음이있는 경우 : db: url: jdbc:oracle:thin:@pathToMyDb username: someUser password: fakePassword 그리고 …

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