add s1mple

This commit is contained in:
Fr13nds 2019-06-19 13:55:34 +08:00
parent 9c274a1ace
commit a15251b2a8
2 changed files with 44 additions and 0 deletions

28
s1mple/pom.xml Normal file
View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>ruoyi</artifactId>
<groupId>com.ruoyi</groupId>
<version>3.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.fri3nds</groupId>
<artifactId>s1mple</artifactId>
<description>new</description>
<dependencies>
<!--Shiro核心框架 -->
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
</dependency>
<!-- 通用工具-->
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-common</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,16 @@
package com.fri3nds.s1mple.controller;
import com.ruoyi.common.core.controller.BaseController;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController extends BaseController {
@RequiresPermissions("system:hello:view")
@RequestMapping("/system/hello")
public String hello(){
return "Hello!Fri3nds!";
}
}