系统支配手册
1. jar支配1.1. 打包办法1mvn clean packagejava -jar ms-mcms.jarCopy
1.2. 打包办法2(推举)
打包指令增加参数 -f bin-xml ,实行完成会在target目录会天生 “ 项目-bin ” 发布文件夹
mvn clean package -f bin-xmlCopy
1.2.1. 目录构造
config:配置文件
html:静态化自动天生的目录(自动天生)
static:静态资源文件
templets:(必须)模版目录,须要复制一份
upload:(必须)上传的文件夹
WEB-INF:ftl视图文件
mcms.log:自动天生的日志文件
.sh:linux启动、停滞脚本
.bat:window启动、停滞脚本
技能选型后端框架技能
名称
官网
Spring Framework
容器
http://projects.spring.io/spring-framework
Spring Boot
MVC框架
https://spring.io/projects/spring-boot
Apache Shiro
安全框架
http://shiro.apache.org
Spring session
分布式Session管理
http://projects.spring.io/spring-session
MyBatis
ORM框架
http://www.mybatis.org
Freemarker
视图框架
http://freemarker.foofun.cn
PageHelper
MyBatis分页插件
http://git.oschina.net/free/Mybatis_PageHelper
Log4J
日志组件
http://logging.apache.org
Maven
项目构建
http://maven.apache.org
Elasticsearch
分布式搜索引擎
https://www.elastic.co
Redis
分布式缓存数据库
https://redis.io
hutool
工具类
http://hutool.mydoc.io
前端框架技能
名称
官网
vue
函式库
https://cn.vuejs.org//
element ui
UI库
https://element.eleme.cn/2.0/#/zh-CN
jQuery
函式库
http://jquery.com/
Bootstrap
前端框架
http://getbootstrap.com/
Bootstrap-table
Bootstrap数据表格
http://bootstrap-table.wenzhixin.net.cn/
BootstrapValidator
表单验证
http://bootstrapvalidator.com/
Font-awesome
字体图标
http://fontawesome.io/
Waves
点击效果插件
https://github.com/fians/Waves/
zTree
树插件
http://www.treejs.cn/v3/
Select2
选择框插件
https://github.com/select2/select2
Vue
MVVM框架
https://cn.vuejs.org/
AmazeUI
移动端UI
http://amazeui.org/
Plupload
上传控件
http://www.plupload.com/
freemarker
模板引擎
http://freemarker.foofun.cn/toc.html
validator
验证库
https://github.com/chriso/validator.js
animate
动画
http://daneden.github.io/animate.css/
icon
矢量小图标(待更新)
http://ms.mingsoft.net/html/86//6048/index.html
软件截图做开源我们是业余的,写代码我们是负责的。研发产品的路上我们一贯在探索、一贯在学习、一贯在存心投入,希望能给更多的企业与开拓者供应一些更有代价的做事。
项目管理代码天生器
源码资料获取办法:关注
SpringJDBC、SpringMVC、SpringSecurity、SpringAOP、SpringORM、SpringTest,这些模块缩短运用程序的开拓韶光,提高了运用开拓的效率例如,在 JavaWeb开拓的早期阶段,我们须要编写大量的代码来将记录插入到数据库中。但是通过利用 SpringJDBC模块的 JDBCTemplate,我们可以将操作简化为几行代码。
什么是Spring BootSpringBoot基本上是 Spring框架的扩展,它肃清了设置 Spring运用程序所需的 XML配置,为更快,更高效的开拓生态系统铺平了道路。
SpringBoot中的一些特色:
1、创建独立的 Spring运用。2、嵌入式 Tomcat、 Jetty、 Undertow容器(无需支配war文件)。3、供应的 starters 简化构建配置4、尽可能自动配置 spring运用。5、供应生产指标,例如指标、健壮检讨和外部化配置6、完备没有代码天生和 XML配置哀求
从配置剖析Maven依赖首先,让我们看一下利用Spring创建Web运用程序所需的最小依赖项
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>5.1.0.RELEASE</version></dependency><dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.1.0.RELEASE</version></dependency>
与Spring不同,Spring Boot只须要一个依赖项来启动和运行Web运用程序:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>2.0.6.RELEASE</version></dependency>
在进行构建期间,所有其他依赖项将自动添加到项目中。
另一个很好的例子便是测试库。我们常日利用 SpringTest, JUnit, Hamcrest和 Mockito库。在 Spring项目中,我们该当将所有这些库添加为依赖项。但是在 SpringBoot中,我们只须要添加 spring-boot-starter-test依赖项来自动包含这些库。
Spring Boot为不同的Spring模块供应了许多依赖项。一些最常用的是:
spring-boot-starter-data-jpaspring-boot-starter-securityspring-boot-starter-testspring-boot-starter-webspring-boot-starter-thymeleaf
有关 starter的完全列表,请查看Spring文档。
MVC配置让我们来看一下 Spring和 SpringBoot创建 JSPWeb运用程序所需的配置。
Spring须要定义调度程序 servlet,映射和其他支持配置。我们可以利用 web.xml 文件或 Initializer类来完成此操作:
public class MyWebAppInitializer implements WebApplicationInitializer { @Override public void onStartup(ServletContext container) { AnnotationConfigWebApplicationContext context = new AnnotationConfigWebApplicationContext(); context.setConfigLocation("com.pingfangushi"); container.addListener(new ContextLoaderListener(context)); ServletRegistration.Dynamic dispatcher = container .addServlet("dispatcher", new DispatcherServlet(context)); dispatcher.setLoadOnStartup(1); dispatcher.addMapping("/"); }}
还须要将 @EnableWebMvc注释添加到 @Configuration类,并定义一个视图解析器来解析从掌握器返回的视图:
@EnableWebMvc@Configurationpublic class ClientWebConfig implements WebMvcConfigurer { @Bean public ViewResolver viewResolver() { InternalResourceViewResolver bean = new InternalResourceViewResolver(); bean.setViewClass(JstlView.class); bean.setPrefix("/WEB-INF/view/"); bean.setSuffix(".jsp"); return bean; }}
再来看 SpringBoot一旦我们添加了 Web启动程序, SpringBoot只须要在 application配置文件中配置几个属性来完成如上操作:
spring.mvc.view.prefix=/WEB-INF/jsp/spring.mvc.view.suffix=.jsp
上面的所有Spring配置都是通过一个名为auto-configuration的过程添加 Bootweb starter来自动包含的。
这意味着 SpringBoot将查看运用程序中存在的依赖项,属性和 bean,并根据这些依赖项,对属性和 bean进行配置。当然,如果我们想要添加自己的自定义配置,那么 SpringBoot自动配置将会退回。
配置模板引擎现在我们来看下如何在Spring和Spring Boot中配置Thymeleaf模板引擎。
在 Spring中,我们须要为视图解析器添加 thymeleaf-spring5依赖项和一些配置:
@Configuration@EnableWebMvcpublic class MvcWebConfig implements WebMvcConfigurer { @Autowired private ApplicationContext applicationContext; @Bean public SpringResourceTemplateResolver templateResolver() { SpringResourceTemplateResolver templateResolver = new SpringResourceTemplateResolver(); templateResolver.setApplicationContext(applicationContext); templateResolver.setPrefix("/WEB-INF/views/"); templateResolver.setSuffix(".html"); return templateResolver; } @Bean public SpringTemplateEngine templateEngine() { SpringTemplateEngine templateEngine = new SpringTemplateEngine(); templateEngine.setTemplateResolver(templateResolver()); templateEngine.setEnableSpringELCompiler(true); return templateEngine; } @Override public void configureViewResolvers(ViewResolverRegistry registry) { ThymeleafViewResolver resolver = new ThymeleafViewResolver(); resolver.setTemplateEngine(templateEngine()); registry.viewResolver(resolver); }}
SpringBoot1X只须要 spring-boot-starter-thymeleaf的依赖项来启用 Web运用程序中的 Thymeleaf支持。 但是由于 Thymeleaf3.0中的新功能,我们必须将 thymeleaf-layout-dialect 添加为 SpringBoot2XWeb运用程序中的依赖项。配置好依赖,我们就可以将模板添加到 src/main/resources/templates文件夹中, SpringBoot将自动显示它们。
Spring Security 配置为大略起见,我们利用框架默认的 HTTPBasic身份验证。让我们首先看一下利用 Spring启用 Security所需的依赖关系和配置。
Spring首先须要依赖 spring-security-web和 spring-security-config 模块。接下来, 我们须要添加一个扩展 WebSecurityConfigurerAdapter的类,并利用 @EnableWebSecurity表明:
@Configuration@EnableWebSecuritypublic class CustomWebSecurityConfigurerAdapter extends WebSecurityConfigurerAdapter { @Autowired public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception { auth.inMemoryAuthentication() .withUser("admin") .password(passwordEncoder() .encode("password")) .authorities("ROLE_ADMIN"); } @Override protected void configure(HttpSecurity http) throws Exception { http.authorizeRequests() .anyRequest().authenticated() .and() .httpBasic(); } @Bean public PasswordEncoder passwordEncoder() { return new BCryptPasswordEncoder(); }}
这里我们利用 inMemoryAuthentication来设置身份验证。同样, SpringBoot也须要这些依赖项才能使其事情。但是我们只须要定义 spring-boot-starter-security的依赖关系,由于这会自动将所有干系的依赖项添加到类路径中。
SpringBoot中的安全配置与上面的相同 。
运用程序启动勾引配置Spring和 SpringBoot中运用程序勾引的基本差异在于 servlet。Spring利用 web.xml 或 SpringServletContainerInitializer作为其勾引入口点。SpringBoot仅利用 Servlet3功能来勾引运用程序,下面让我们详细来理解下
Spring 勾引配置Spring支持传统的 web.xml勾引办法以及最新的 Servlet3+方法。
配置 web.xml方法启动的步骤
Servlet容器(做事器)读取 web.xml
web.xml中定义的 DispatcherServlet由容器实例化
DispatcherServlet通过读取 WEB-INF/{servletName}-servlet.xml来创建 WebApplicationContext。末了, DispatcherServlet注册在运用程序高下文中定义的 bean
利用 Servlet3+方法的 Spring启动步骤
容器搜索实现 ServletContainerInitializer的类并实行 SpringServletContainerInitializer找到实现所有类 WebApplicationInitializer``WebApplicationInitializer创建具有XML或高下文 @Configuration类 WebApplicationInitializer创建 DispatcherServlet与先前创建的高下文。
SpringBoot 勾引配置Spring Boot运用程序的入口点是利用@SpringBootApplication注释的类
@SpringBootApplicationpublic class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); }}
默认情形下, SpringBoot利用嵌入式容器来运行运用程序。在这种情形下, SpringBoot利用 publicstaticvoidmain入口点来启动嵌入式 Web做事器。此外,它还卖力将 Servlet, Filter和 ServletContextInitializerbean从运用程序高下文绑定到嵌入式 servlet容器。SpringBoot的另一个特性是它会自动扫描同一个包中的所有类或 Main类的子包中的组件。
SpringBoot供应了将其支配到外部容器的办法。我们只须要扩展 SpringBootServletInitializer即可:
/ War支配 @author SanLi Created by 2689170096@qq.com on 2018/4/15 /public class ServletInitializer extends SpringBootServletInitializer { @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { return application.sources(Application.class); } @Override public void onStartup(ServletContext servletContext) throws ServletException { super.onStartup(servletContext); servletContext.addListener(new HttpSessionEventPublisher()); }}
这里外部 servlet容器查找在war包下的 META-INF文件夹下MANIFEST.MF文件中定义的 Main-class, SpringBootServletInitializer将卖力绑定 Servlet, Filter和 ServletContextInitializer。
打包和支配末了,让我们看看如何打包和支配运用程序。这两个框架都支持 Maven和 Gradle等通用包管理技能。但是在支配方面,这些框架差异很大。例如,Spring Boot Maven插件在 Maven中供应 SpringBoot支持。它还许可打包可实行 jar或 war包并 就地运行运用程序。
在支配环境中 SpringBoot 比拟 Spring的一些优点包括:
1、供应嵌入式容器支持2、利用命令java -jar独立运行jar3、在外部容器中支配时,可以选择打消依赖关系以避免潜在的jar冲突4、支配时灵巧指定配置文件的选项5、用于集成测试的随机端口天生
结论简而言之,我们可以说 SpringBoot只是 Spring本身的扩展,使开拓,测试和支配更加方便。