一说到javaee大家就会联想到javaweb请添加链接描述,那么javaweb是什么,javaee是什么,他们之间有什么区别,今天我们一起学习一下javaweb和javaee相关的知识。JavaWeb包括jsp、Html等前端页面,我们可以这样理解,jsp可以看做前端页面嵌入了java的代码——编译成Servlet——输出HTML——呈现出一个页面。JavaWeb一般有两个架构,分别是C/S(C
分类:
编程语言 时间:
2020-09-17 13:13:34
阅读次数:
33
一. 系统整体了解 Server端:jsp+Servlet+json 数据库:sql、MySQL、oracle等 前台: 涉及到jstl,jsp,js,css,html方面比较多 后台:servlet,jms,ejb, 还有很多框架,struts,hibernate,spring,ibatis Js ...
分类:
Web程序 时间:
2020-09-17 12:52:34
阅读次数:
41
1.xxx-api是基于springboot的模块 2.配置文件 application.properties spring.profiles.active=@activeEnv@ application-dev.properties server.servlet.context-path=/api ...
分类:
其他好文 时间:
2020-09-14 19:22:29
阅读次数:
67
SpringMVC注解的方式@Controller@RequestMapping@SessionAttributes案例实操@Controller控制器定义在spring3.0中,通过@controller标注即可将class定义为一个controller类。为使springMVC能找到定义为controller的bean,需要在servlet-context配置文件中增加如下定义:<con
分类:
编程语言 时间:
2020-09-14 19:19:51
阅读次数:
55
My series of Cloud Application Studio Blogs How to detect EditMode in an Embedded Component Step by step to enable your custom BO with attachment uplo ...
分类:
其他好文 时间:
2020-09-12 21:42:43
阅读次数:
46
If you already have a running UI5 application and uploaded it to your Github repository, it will be very easy to host that application in Heroku with ...
分类:
其他好文 时间:
2020-09-11 14:16:02
阅读次数:
30
前端反向代理镜像:docker pull nginx:1.15.12-alpine 网页服务器镜像(含application层和service层):yipianchuyun/php:7.3.5-fpm-nginx-alpine3.9(含php-fpm和nginx)使用dockerfile 构建 和y ...
分类:
其他好文 时间:
2020-09-10 22:34:53
阅读次数:
40
一、对servletContext、request、session域的监听器(六个监听器) 要使用这六个监听器时候步骤如下: 1、建立一个类去实现要使用监听器的接口; 2、在webapp文件夹下WEB-INF下的web.xml中进行配置; ①、ServletContextListener ②、Htt ...
分类:
Web程序 时间:
2020-09-08 21:05:58
阅读次数:
86
1.前言有些时候我们需要在SpringBootServletWeb应用中声明一些自定义的ServletFilter来处理一些逻辑。比如简单的权限系统、请求头过滤、防止XSS***等。本篇将讲解如何在SpringBoot应用中声明自定义ServletFilter以及定义它们各自的作用域和顺序。2.自定义Filter可能有人说声明ServletFilter不就是实现Filter接口嘛,没有什么好讲的!是
分类:
编程语言 时间:
2020-09-08 20:53:17
阅读次数:
55
SpringBoot核心功能 1、独立运行Spring项目 Spring boot 可以以jar包形式独立运行,运行一个Spring Boot项目只需要通过java -jar xx.jar来运行。 2、内嵌servlet容器 Spring Boot可以选择内嵌Tomcat、jetty或者Undert ...
分类:
编程语言 时间:
2020-09-07 19:13:10
阅读次数:
42