报错信息: 代码: @Controller("/index") public class IndexController extends BaseController{ @GetMapping(value="/hello") public String index(HttpServletRequest request){ return this.render("index"); } } 感觉没啥锅,瞅半天也瞅不出来,后来才发现是 @Control…
1. Spring JAP 基本使用说明: Spring boot 访问数据库基本上都是通过Spring JPA封装的Bean作为API的,Spring JPA 将访问数据库通过封装,只要你的类实现了JPARepository这个接口,它里面对外公开了一部分接口,可以供你实现部分功能.如图: 它里面提供了可以传Id进行单个查询,也可以提供类进行匹配查询等. 由于JPARepository实现了,PagingAndSortingRepository,这个接口是用来实现分页用的,这个接口又实现了Cr…
一. spring boot中传参的方法 1.自动化配置 spring Boot 对于开发人员最大的好处在于可以对 Spring 应用进行自动配置.Spring Boot 会根据应用中声明的第三方依赖来自动配置 Spring 框架,而不需要进行显式的声明.比如当声明了对 HSQLDB 的依赖时,Spring Boot 会自动配置成使用 HSQLDB 进行数据库操作. Spring Boot 推荐采用基于 Java 注解的配置方式,而不是传统的 XML.只需要在主配置 Java 类上添加“@Ena…
Spring Boot - 访问外部接口 在Spring-Boot项目开发中,存在着本模块的代码需要访问外面模块接口,或外部url链接的需求, 比如调用外部的地图API或者天气API. Spring Boot - 访问外部接口 方案一: 采用原生的Http请求 方案二: 采用Feign进行消费 方案三: 采用RestTemplate方法 Get请求之--getForEntity(Stringurl,Class responseType,Object-urlVariables) Get请求之--g…
spring  boot 启动遇到报错,具体如下 Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine a suitable driver class Action: Consider the following: If you want a…
spring boot中连接数据库报错500(mybatis) pom.xml中的依赖 <!-- 集成mybatis--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1.3</version> </depend…
直接访问controller路径http://localhost:8080/index报错: HTTP Status 500 - Servlet.init() for servlet spring threw exception type Exception report message Servlet.init() for servlet spring threw exception description The server encountered an internal error th…
一.项目实例 1.项目结构 2.项目代码 1).ActionController.Java: package com.example.controller; import java.util.Date; import java.util.Map; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Controller; import org.spring…
报错如下: org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.newhope.interview.dao.UserMapper.add at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:225) at org.apache.ibatis.binding.MapperMet…
今天被问到重定向的问题,后续又引起了静态资源路径配置的问题,在这里做一个总结,当然,顺便添加默认访问index.html. 一:默认访问 1.默认路径 在springboot中静态资源的映射文件是在resources目录下的static文件夹. 2.访问index.html 在项目中,如何访问我们的index.html呢. 首先看程序结构. 然后启动项目. 输入localhost:8090就可以访问了,这个是默认的,不需要具体的写index.html 二:重定向 1.程序 package com…