多平台统一管理软件接口,如何实现多平台统一管理软件接口
280
2023-01-31
SpringBoot + SpringSecurity 环境搭建的步骤
一、使用SpringBoot+Maven搭建一个多模块项目(可以参考这篇文章 --> 这里)
二、删除父工程的src文件,删除app、browser、core下的.java文件
依赖关系:
demo 依赖 browser
browser、app依赖core
三、父工程pom.xml文件
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
四、zeke-security-demo项目下的pom.xml文件
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
五、zeke-security-core项目下的pom.xml文件
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
六、zeke-security-browser项目下的pom.xml文件
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
七、zeke-security-app项目下的pom.xml文件
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
八、zeke-security-demo项目下的application.properties
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/imooc-demo
spring.datasource.username=root
spring.datasource.password=
spring.session.store-type=none
security.basic.enabled=false
九、在zeke-security-demo启动类上添加测试接口
@RestController
@SpringBootApplication
public class ZekeSecurityDemoApplication {
public static void main(String[] args) {
SpringApplication.run(ZekeSecurityDemoApplication.class, args);
}
@GetMapping("/hello")
public String hello(){
return "success";
}
}
十、输入地址localhost/hello
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~