开发博客系统文章数:菜单文章未更新构建eureka注册中心(请先阅读本文)https://segmentfault.com/a/11...构建Beans写入Token解析注解https://段错误。com/a/11...搭建权限管理系统https://segmentfault.com/a/11...搭建后台管理系统https://segmentfault.com/a/11...前端Fetch请求打包https://segmentfault.com/a/11...权限映射:pom.xml4.0.0com.serverauthority0.0.1-SNAPSHOTjarauthoritySpringBoot授权项目org.springframework.启动spring-boot-starter-parent1.5.6.RELEASEUTF-8UTF-81.8Camden.SR6com.serverbeans1.0-SNAPSHOTorg.springframework.cloudspring-cloud-starter配置org.springframework.bootspring-boot-starter-securityorg.springframework.cloudspring-cloud-starter-eurekaorg.springframework.bootspring-boot-starter复制代码-websocketorg.springframework.bootspring-boot-devtoolstrue<依赖>org.springframework.cloudspring-cloud-starter-feignorg.springframework.bootspring-boot-starter-actuator复制代码org.springframework.cloudspring-cloud-starter-eureka-server组织.springframework.bootspring-boot-starter-testtestmysqlmysql-connector-java8.0.11org.springframework.bootspring-boot-starter-data-jpaorg.springframework.cloud弹簧云依赖${spring-cloud.version}pom导入或g.springframework.bootspring-boot-maven-plugin配置文件application.propertieseureka.client.serviceUrl.defaultZone=http://system:123456@loc??alhost:8081/eurekaeureka.instance.prefer-ip-address=truespring.application.name=AUSserver.port=8767security.basic.enabled=false#security.user.name=system#security.user.password=123456spring.datasource.url=jdbc:mysql://localhost:3306/dbauth?characterEncoding=utf8&serverTimezone=GMT%2B8&useSSL=falsespring.datasource.username=root#root,rootspring.datasource.password=rootspring.datasource.driver-class-name=com.mysql.cj.jdbc.Driverspring.jpa.properties.hibernate.hbm2ddl.auto=update#create-drospring.jpa.show-sql=true启动类@SpringBootApplication@EnableEurekaClientpublicclassAuthorityApplication{publicstaticvoidmain(String[]args){SpringApplication.run(AuthorityApplication.class,args);}}然后什么都没有