Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
guns-vip
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
chenjunxiong
guns-vip
Commits
a7ebb8c2
Commit
a7ebb8c2
authored
May 22, 2017
by
fsn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
第二个可用版本
parent
ee9ead26
Hide whitespace changes
Inline
Side-by-side
Showing
44 changed files
with
3 additions
and
7 deletions
+3
-7
pom.xml
+0
-4
src/main/java/com/stylefeng/guns/config/web/WebConfig.java
+1
-1
src/main/java/com/stylefeng/guns/modular/system/controller/NoticeController.java
+1
-1
src/main/resources/application.yml
+1
-1
src/main/webapp/WEB-INF/view/404.html
+0
-0
src/main/webapp/WEB-INF/view/blackboard.html
+0
-0
src/main/webapp/WEB-INF/view/common/_container.html
+0
-0
src/main/webapp/WEB-INF/view/common/_right.html
+0
-0
src/main/webapp/WEB-INF/view/common/_tab.html
+0
-0
src/main/webapp/WEB-INF/view/common/_theme.html
+0
-0
src/main/webapp/WEB-INF/view/common/tags/NameCon.tag
+0
-0
src/main/webapp/WEB-INF/view/common/tags/SelectCon.tag
+0
-0
src/main/webapp/WEB-INF/view/common/tags/TimeCon.tag
+0
-0
src/main/webapp/WEB-INF/view/common/tags/avatar.tag
+0
-0
src/main/webapp/WEB-INF/view/common/tags/button.tag
+0
-0
src/main/webapp/WEB-INF/view/common/tags/input.tag
+0
-0
src/main/webapp/WEB-INF/view/common/tags/select.tag
+0
-0
src/main/webapp/WEB-INF/view/common/tags/table.tag
+0
-0
src/main/webapp/WEB-INF/view/index.html
+0
-0
src/main/webapp/WEB-INF/view/login.html
+0
-0
src/main/webapp/WEB-INF/view/system/dept/dept.html
+0
-0
src/main/webapp/WEB-INF/view/system/dept/dept_add.html
+0
-0
src/main/webapp/WEB-INF/view/system/dept/dept_edit.html
+0
-0
src/main/webapp/WEB-INF/view/system/dict/dict.html
+0
-0
src/main/webapp/WEB-INF/view/system/dict/dict_add.html
+0
-0
src/main/webapp/WEB-INF/view/system/dict/dict_edit.html
+0
-0
src/main/webapp/WEB-INF/view/system/log/log.html
+0
-0
src/main/webapp/WEB-INF/view/system/log/login_log.html
+0
-0
src/main/webapp/WEB-INF/view/system/menu/menu.html
+0
-0
src/main/webapp/WEB-INF/view/system/menu/menu_add.html
+0
-0
src/main/webapp/WEB-INF/view/system/menu/menu_edit.html
+0
-0
src/main/webapp/WEB-INF/view/system/notice/notice.html
+0
-0
src/main/webapp/WEB-INF/view/system/notice/notice_add.html
+0
-0
src/main/webapp/WEB-INF/view/system/notice/notice_edit.html
+0
-0
src/main/webapp/WEB-INF/view/system/role/role.html
+0
-0
src/main/webapp/WEB-INF/view/system/role/role_add.html
+0
-0
src/main/webapp/WEB-INF/view/system/role/role_assign.html
+0
-0
src/main/webapp/WEB-INF/view/system/role/role_edit.html
+0
-0
src/main/webapp/WEB-INF/view/system/user/user.html
+0
-0
src/main/webapp/WEB-INF/view/system/user/user_add.html
+0
-0
src/main/webapp/WEB-INF/view/system/user/user_chpwd.html
+0
-0
src/main/webapp/WEB-INF/view/system/user/user_edit.html
+0
-0
src/main/webapp/WEB-INF/view/system/user/user_roleassign.html
+0
-0
src/main/webapp/WEB-INF/view/system/user/user_view.html
+0
-0
No files found.
pom.xml
View file @
a7ebb8c2
...
...
@@ -156,10 +156,6 @@
<resources>
<resource>
<directory>
src/main/webapp
</directory>
<includes>
<include>
**/**
</include>
</includes>
<targetPath>
/META-INF/resources
</targetPath>
</resource>
<resource>
<directory>
src/main/resources
</directory>
...
...
src/main/java/com/stylefeng/guns/config/web/WebConfig.java
View file @
a7ebb8c2
...
...
@@ -29,7 +29,7 @@ public class WebConfig {
@Bean
(
initMethod
=
"init"
)
public
BeetlConfiguration
beetlConfiguration
()
{
BeetlConfiguration
beetlConfiguration
=
new
BeetlConfiguration
();
beetlConfiguration
.
setResourceLoader
(
new
ClasspathResourceLoader
(
WebConfig
.
class
.
getClassLoader
(),
"/
templates
"
));
beetlConfiguration
.
setResourceLoader
(
new
ClasspathResourceLoader
(
WebConfig
.
class
.
getClassLoader
(),
"/
WEB-INF/view
"
));
beetlConfiguration
.
setConfigProperties
(
BeetlProperties
.
newInstance
());
return
beetlConfiguration
;
}
...
...
src/main/java/com/stylefeng/guns/modular/system/controller/NoticeController.java
View file @
a7ebb8c2
...
...
@@ -76,7 +76,7 @@ public class NoticeController extends BaseController {
public
String
hello
()
{
List
<
Map
<
String
,
Object
>>
notices
=
noticeDao
.
list
(
null
);
super
.
setAttr
(
"noticeList"
,
notices
);
return
"blackboard.html"
;
return
"
/
blackboard.html"
;
}
/**
...
...
src/main/resources/application.yml
View file @
a7ebb8c2
...
...
@@ -6,7 +6,7 @@ spring:
active
:
dev
mvc
:
view
:
prefix
:
/
templates
prefix
:
/
WEB-INF/view/
mybatis-plus
:
mapper-locations
:
classpath*:com/stylefeng/guns/**/mapping/*.xml
...
...
src/main/
resources/templates
/404.html
→
src/main/
webapp/WEB-INF/view
/404.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/blackboard.html
→
src/main/
webapp/WEB-INF/view
/blackboard.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/common/_container.html
→
src/main/
webapp/WEB-INF/view
/common/_container.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/common/_right.html
→
src/main/
webapp/WEB-INF/view
/common/_right.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/common/_tab.html
→
src/main/
webapp/WEB-INF/view
/common/_tab.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/common/_theme.html
→
src/main/
webapp/WEB-INF/view
/common/_theme.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/common/tags/NameCon.tag
→
src/main/
webapp/WEB-INF/view
/common/tags/NameCon.tag
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/common/tags/SelectCon.tag
→
src/main/
webapp/WEB-INF/view
/common/tags/SelectCon.tag
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/common/tags/TimeCon.tag
→
src/main/
webapp/WEB-INF/view
/common/tags/TimeCon.tag
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/common/tags/avatar.tag
→
src/main/
webapp/WEB-INF/view
/common/tags/avatar.tag
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/common/tags/button.tag
→
src/main/
webapp/WEB-INF/view
/common/tags/button.tag
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/common/tags/input.tag
→
src/main/
webapp/WEB-INF/view
/common/tags/input.tag
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/common/tags/select.tag
→
src/main/
webapp/WEB-INF/view
/common/tags/select.tag
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/common/tags/table.tag
→
src/main/
webapp/WEB-INF/view
/common/tags/table.tag
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/index.html
→
src/main/
webapp/WEB-INF/view
/index.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/login.html
→
src/main/
webapp/WEB-INF/view
/login.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/dept/dept.html
→
src/main/
webapp/WEB-INF/view
/system/dept/dept.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/dept/dept_add.html
→
src/main/
webapp/WEB-INF/view
/system/dept/dept_add.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/dept/dept_edit.html
→
src/main/
webapp/WEB-INF/view
/system/dept/dept_edit.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/dict/dict.html
→
src/main/
webapp/WEB-INF/view
/system/dict/dict.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/dict/dict_add.html
→
src/main/
webapp/WEB-INF/view
/system/dict/dict_add.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/dict/dict_edit.html
→
src/main/
webapp/WEB-INF/view
/system/dict/dict_edit.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/log/log.html
→
src/main/
webapp/WEB-INF/view
/system/log/log.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/log/login_log.html
→
src/main/
webapp/WEB-INF/view
/system/log/login_log.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/menu/menu.html
→
src/main/
webapp/WEB-INF/view
/system/menu/menu.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/menu/menu_add.html
→
src/main/
webapp/WEB-INF/view
/system/menu/menu_add.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/menu/menu_edit.html
→
src/main/
webapp/WEB-INF/view
/system/menu/menu_edit.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/notice/notice.html
→
src/main/
webapp/WEB-INF/view
/system/notice/notice.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/notice/notice_add.html
→
src/main/
webapp/WEB-INF/view
/system/notice/notice_add.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/notice/notice_edit.html
→
src/main/
webapp/WEB-INF/view
/system/notice/notice_edit.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/role/role.html
→
src/main/
webapp/WEB-INF/view
/system/role/role.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/role/role_add.html
→
src/main/
webapp/WEB-INF/view
/system/role/role_add.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/role/role_assign.html
→
src/main/
webapp/WEB-INF/view
/system/role/role_assign.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/role/role_edit.html
→
src/main/
webapp/WEB-INF/view
/system/role/role_edit.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/user/user.html
→
src/main/
webapp/WEB-INF/view
/system/user/user.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/user/user_add.html
→
src/main/
webapp/WEB-INF/view
/system/user/user_add.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/user/user_chpwd.html
→
src/main/
webapp/WEB-INF/view
/system/user/user_chpwd.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/user/user_edit.html
→
src/main/
webapp/WEB-INF/view
/system/user/user_edit.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/user/user_roleassign.html
→
src/main/
webapp/WEB-INF/view
/system/user/user_roleassign.html
View file @
a7ebb8c2
File moved
src/main/
resources/templates
/system/user/user_view.html
→
src/main/
webapp/WEB-INF/view
/system/user/user_view.html
View file @
a7ebb8c2
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment