-
MyBatis之java.lang.UnsupportedOperationException异常解决方案
今天在使用MyBatis执行sql语句时,出现如下异常: 执行的sql语句配置信息如下: <select id="getColumnsByTableName" parameterType="Strin……
Joe.Ye 2023-03-110 0 -
MyBatis根据List批量查询List结果
基本使用 (1) Mapper接口 /** * 根据用户id list批量查询用户 */ public List<User> selectByIds(@Param("userIds") List<Long> u……
Joe.Ye 2023-03-110 0 -
Spring Boot手动注入Bean
应用场景 Spring Boot项目中,我们可能遇到@Autowired注入对象为null的问题,可能的原因包含: (1)当前类的初始化在注入类注入之前 (2)多线程环境,新创建……
Joe.Ye 2023-03-110 0 -
Spring Boot获取profile值
Environment方式 @Autowired Environment environment; String profile = environment.getActiveProfiles()[0];
Joe.Ye 2023-03-110 0 -
Spring Boot弃用Tomcat选择Undertow作为容器
Undertow 在Spring Boot框架中,我们使用最多的是Tomcat,这是Spring Boot默认的容器技术,而且是内嵌式的Tomcat。同时,SpringBoot也支持Undertow容器,我们……
Joe.Ye 2023-03-110 0 -
Spring Boot 实现ErrorController接口处理404、500等错误页面
在项目中我们遇到404找不到的错误、或者500服务器错误都需要配置相应的页面给用户一个友好的提示,而在Spring Boot中我们需要如何设置。 我们需要实现ErrorCon……
Joe.Ye 2023-03-110 0 -
Spring Boot 2.0 之优雅停机
Spring Boot“约定大于配置”的特性,体现了优雅流畅的开发过程,其部署启动方式java -jar xxx.jar也很优雅。但是通常使用的停止应用方式是kill -9 进程号,即使……
Joe.Ye 2023-03-110 0 -
Spring Boot优雅停止服务的几种方法
在使用Spring Boot的时候,都要涉及到服务的停止和启动,当我们停止服务的时候,很多时候大家都是kill -9直接把程序进程杀掉,这样程序不会执行优雅的关闭。而……
Joe.Ye 2023-03-110 0 -
Spring Boot读取classpath下文件
开发过程中,必不可少的需要读取文件,对于打包方式的不同,还会存在一些坑,比如以jar包方式部署时,文件都存在于jar包中,某些读取方式在开发工程中都可行,……
Joe.Ye 2023-03-110 0 -
Spring Cloud Eureka注册中心服务状态变更
剔除服务:OUT_OF_SERVICE put请求:http://127.0.0.1:8000/eureka/apps/SERVICE-APPBLOG/192.168.0.1:service-appblog:8080/status?value=OUT_OF_SERVICE 恢……
Joe.Ye 2023-03-110 0 -
Spring Cloud手动实例化Feign代码
Feign抽象化HTTP调用,可以以接口的形式调用远程服务,在实际开发中可以避免很多低级错误,比如误传、传错字段,统一响应避免乱适配等等。然而有时候在一些特……
Joe.Ye 2023-03-110 0 -
Thymeleaf传递数据到js变量
如何把控制器传来的model中的值传递给js变量呢? Controller @RequestMapping(value = "message", method = RequestMethod.GET) public String mess……
Joe.Ye 2023-03-110 0 -
Spring Boot Thymeleaf 引入静态文件
基本引用 CSS <link th:href="@{/layui/css/layui.css}" rel="stylesheet" type="text/css" href="../static/layui/c……
Joe.Ye 2023-03-110 0 -
Spring Boot使用RestTemplate批量下载文件
Spring Boot使用RestTemplate批量下载文件 private TestRestTemplate template = null; @Before public void testBefore() { template = new TestRestTe……
Joe.Ye 2023-03-110 0 -
Spring Boot使用RestTemplate发送get请求,获取不到参数的问题
错误案例 使用RestTemplate发送GET请求,发现后端接收不到请求参数 String url = "http://api.xxx.xxx"; //模拟请求参数 Map map = new HashMap<……
Joe.Ye 2023-03-110 0
您好,这是一条评论。若需要审核、编辑或删除评论,请访问仪表盘的评论界面。评论者头像来自 Gravatar。
评论于 CentOS 7下安装MySQL