Я использую Spring MVC.
мой pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<!-- <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency> -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- <dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency> -->
<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-core -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-c3p0</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>19.0</version>
</dependency>
И мой класс контроллеров:
@EnableWebMvc
@Controller
public class RootController {
@RequestMapping("/")
public String home()
{
return "index";
}
@RequestMapping("/next")
public String next()
{
return "next";
}
}
Applciation Основной класс
@SpringBootApplication
@ComponentScan(basePackages= {"com.approot.controller"})
@EnableWebMvc
public class LimitBoApplication {
public static void main(String[] args) {
SpringApplication.run(LimitBoApplication.class, args);
}
}
моя весна application.properties
server.port =8090
spring.mvc.view.suffix=.jsp
server.servlet.context-path=/AppBO
Когда я запускаю это приложение, я получаю сообщение об ошибке ниже.
Could not resolve view with name 'index' in servlet with name
'dispatcherServlet'
javax.servlet.ServletException: Could not resolve view with name 'index'
in servlet with name 'dispatcherServlet'
at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1350)
at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1116)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1055)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:942)
Я поместил свои jsp
файлы в LimitBO\src\main\resources\templates
, Spring все еще не может найти файлы jsp.
что я здесь не так делаю? Я пытался добавить эти jsp файлы в папку recources, но все равно не получилось.