Java-Web项目总结

使用jetbrain的idea创建Java-Web项目
链接地址:http://www.omegaxyz.com/2018/10/04/intellij-idea-java-web/
Java-MVC模式概述
链接地址:http://www.omegaxyz.com/2018/10/03/javaweb-mvc/

走过的坑(未完待续)

①WEB-INF下的JSP是不能通过URL直接访问,否则这些页面文件容易被偷看到源代码,或被直接调用。
Java-Web项目总结_第1张图片
②使用idea写程序时要注意,Tomcat中的Servlet-api得手动导入External Libraries
在这里插入图片描述
③最新版本的JDK1.9由于太新了(2018),很多地方没有适配,建议先用JDK1.8版本的,否则很容易出问题。

④如果需要连接数据库,那么要注意数据库的端口设置问题。
c3p0.xml



    
        
        jdbc:sqlserver://localhost:1433;databaseName=t_customer
        com.microsoft.sqlserver.jdbc.SQLServerDriver
        mysql
        123456

        
        3
        
        10
        
        2
        
        10
    

⑤每当写一个servlet时,要在web.xml中注册

例如:


        CustomerServlet
        servlet.CustomerServlet



        CustomerServlet
        /CustomerServlet

你可能感兴趣的:(java,Java,web)