Java程序员框架应该用于开发程序。流行的是SSH框架,而且,如果是开发实际上需要上线的系统,一般会使用一个坚实而广泛使用的框架。但如果是这样的话java零基础如果是新手,建议直接使用第一个程序Servlet开发,下面就介绍Spring 使用Servletetboot编写程序的方式。使用Servlet开发程序,可以了解http协议、数据库实现底层,如连接,因此,这是新手学习和发展的好方法。
Spring 使用Servletetboot的两种方式:
方法一通过注释实现:
1、用Servlet3的注释方法编写Servlet
@WebServlet(urlPatterns="/myServlet")
public class MyServlet extends HttpServlet {
@Override
public void doGet(HttpServletRequest req, HttpServletResponse
resp) throws ServletException, IOException {
resp.getWriter().print("hello word");
resp.getWriter().flush();
resp.getWriter().close();
}
@Override
protected void doPost(HttpServletRequest req,
HttpServletResponse resp) throws ServletException, IOException {
this.doGet(req, resp);
}
}
2、在main方法的主要类别中添加注释:
@ServletComponentScan(basePackages="com.wkcto.servlet")
Spring 使用Servletetboot的方式二是通过Spring boot配置类来实现:
1、写一个普通的 Servlet
public class HeServlet extends HttpServlet {
@Override
public void doGet(HttpServletRequest req, HttpServletResponse
resp) throws ServletException, IOException {
resp.getWriter().print("hello word");
resp.getWriter().flush();
我们也需要使用它Servlet,希望大家能学好以上。Spring 使用Servletetboot的内容。