今天碰到的小问题

导入现有文件的方法

命令行形式导入操作:  在dos窗口下切换到mysql的bin目录
                     mysql   -u用户名   -p密码   数据库名 (回车)(若不存在该数据则要先创建该数据库)
                     source   sql文件的绝对路径 (回车)
                     
Tomcat中出错: java.lang.SecurityException: Servlet of class org.apache.catalina.servlets.InvokerServlet is privileged and cannot be loaded by this web application
解决方法:  修改conf/context.xml文件,新加两个属性.
<Context  reloadable="true" privileged="true">
    <!-- Default set of monitored resources -->
    <WatchedResource>WEB-INF/web.xml</WatchedResource>
</Context>

你可能感兴趣的:(tomcat,数据库,mysql,servlet,application,resources)