Tagged: springboot

springboot Could not resolve type alias

springboot embedded tomcat 에서 typealias를 사용할시 class not found가 떴음. sqlSessionFactoryBean에 아래 설정을 추가해주면 해결이 된다.sqlSessionFactoryBean.setVfs(SpringBootVFS.class); SqlSessionFactoryBean factoryBean = new SqlSessionFactoryBean(); factoryBean.setVfs(SpringBootVFS.class); https://github.com/mybatis/spring-boot-starter/issues/278

[Docker, SpringBoot, Maven] 스프링부트 도커 이미지로 메이븐 빌드하여 로컬 실행해보기

메이븐에서 검색해보면 스포티파이에서 만든 인기있는 도커 클라이언트가 있다. https://mvnrepository.com/artifact/com.spotify/docker-client 스프링부트에 이걸 붙여서 로컬에서 메이븐 빌드하여 간단히 도커 이미지로 실행해보자. 1. 메이븐에 아래와 같이 붙여본다. <properties> <java.version>1.8</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <docker.image.prefix>springboot</docker.image.prefix> </properties> <build>...

springboot security 예제

spring.security.user.name=user spring.security.user.password=1234   package com.htrucci.bootsecurity; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @SpringBootApplication public class BootsecurityApplication { public static void main(String[] args) { SpringApplication.run(BootsecurityApplication.class, args); } } @RestController class...

SpringBoot + Junit 예제

SpringBoot + Junit 예제 import static org.assertj.core.api.Assertions.assertThat; @RunWith(SpringRunner.class) @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) public class BootrestApplicationTests { @Autowired private TestRestTemplate restTemplate; @Test public void testSpringBootApp() throws JsonProcessingException, IOException{ String body = restTemplate.getForObject(“/”,...

[Springboot] JSP사용할때 No Java Compiler available 오류

org.apache.jasper.JasperException: java.lang.IllegalStateException: No Java compiler available 위와 같은 오류가 계속 노출되었다. 인터넷에 몇몇 솔루션이 나와있긴 하지만 전부 해결되지 않았다. 톰캣 및 메이븐 폴더에서 tools.jar / ecj-4.4.2.jar / commons-logging-1.2.jar / ecj-4.5.1.jar...