靓亮宝儿 2022-09-04 11:04 采纳率: 50%
浏览 347
已结题

无法检索应用程序 JVM服务URL

运行springboot出现 StudentmanageSpringbootApplication 无法检索应用程序 JMX 服务 URL
package com.yuliang;

import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
@MapperScan("com.yuliang.mapper")
public class StudentmanageSpringbootApplication {
    public static void main(String[] args) {
        SpringApplication.run(StudentmanageSpringbootApplication.class, args);
    }
}


//application.yml
server:
  port: 8080
spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/dormitory
    username: root
    password: 123456
mybatis-plus:
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  mapper-locations: com/yuliang/mapper/xml/*.xml

  • 写回答

1条回答 默认 最新

编辑
预览

报告相同问题?

问题事件

  • 系统已结题 9月11日
  • 已采纳回答 9月4日
  • 创建了问题 9月4日
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部