Unable to initialize GTK: could not open display

When using virt manager to install KVM virtual machine, an error will be reported and the prompt will be displayed

Unable to initialize GTK: could not open display

The log shows:

WARNING! The remote SSH server rejected X11 forwarding request.

Solution:
Yum - y install xorg-x11-xauth
log out of xshell, log in again, and then call virt manager

[How to Solve]Repeated column in mapping for entity,should be mapped with insert=“false“ update=“false“

This blog post records a bug encountered in the actual development of the project.

Error background and details

The background of the problem is when a field in the database is of type longtext and JPA mapping is used

   /**
     * Product Introduction Related URL
     */
    @Basic(fetch=LAZY)
    @Lob
    @Column(name = "goods_introduce",columnDefinition = "longtext")
    private String goodsIntroduceUrl;

The error is as follows:

Repeated column in mapping for entity: com.xxx.business.goods.bean.GoodsEntity column: goods_introduce (should be mapped with insert="false" update="false")

The detailed error information is as follows:

Caused by: javax.persistence.PersistenceException: [PersistenceUnit: default] Unable to build Hibernate SessionFactory; nested exception is org.hibernate.MappingException: Repeated column in mapping for entity: com.xxx.business.goods.bean.GoodsEntity column: goods_introduce (should be mapped with insert="false" update="false")
	at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:403)
	at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.afterPropertiesSet(AbstractEntityManagerFactoryBean.java:378)
	at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.afterPropertiesSet(LocalContainerEntityManagerFactoryBean.java:341)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1855)
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1792)
	... 16 common frames omitted
Caused by: org.hibernate.MappingException: Repeated column in mapping for entity: com.xxx.business.goods.bean.GoodsEntity column: goods_introduce (should be mapped with insert="false" update="false")
	at org.hibernate.mapping.PersistentClass.checkColumnDuplication(PersistentClass.java:862)
	at org.hibernate.mapping.PersistentClass.checkPropertyColumnDuplication(PersistentClass.java:880)
	at org.hibernate.mapping.PersistentClass.checkColumnDuplication(PersistentClass.java:902)
	at org.hibernate.mapping.PersistentClass.validate(PersistentClass.java:634)
	at org.hibernate.mapping.RootClass.validate(RootClass.java:267)
	at org.hibernate.boot.internal.MetadataImpl.validate(MetadataImpl.java:351)
	at org.hibernate.boot.internal.SessionFactoryBuilderImpl.build(SessionFactoryBuilderImpl.java:464)
	at org.hibernate.jpa.boot.internal.EntityManagerFactoryBuilderImpl.build(EntityManagerFactoryBuilderImpl.java:1249)
	at org.springframework.orm.jpa.vendor.SpringHibernateJpaPersistenceProvider.createContainerEntityManagerFactory(SpringHibernateJpaPersistenceProvider.java:58)
	at org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.createNativeEntityManagerFactory(LocalContainerEntityManagerFactoryBean.java:365)
	at org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.buildNativeEntityManagerFactory(AbstractEntityManagerFactoryBean.java:391)
	... 20 common frames omitted

Solution

The problem is that a long text type field is customized in the database, and then spring data JPA customizes a type, causing duplicate fields.

The solution is very simple, that is to disable the functions of inserting and updating table fields in spring data JPA for this field.

   /**
     * Product Introduction Related URL
     */
    @Basic(fetch=LAZY)
    @Lob
    @Column(name = "goods_introduce",columnDefinition = "longtext",insertable = false,updatable = false)
    private String goodsIntroduceUrl;

Solution: Spring no matching editors or conversion strategy found

1、 Exception information:

17:14:37.972 [localhost-startStop-1] ERROR o.s.web.servlet.DispatcherServlet - Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'beanUtil': Injection of resource dependencies failed; nested exception is org.springframework.beans.ConversionNotSupportedException: Failed to convert value of type 'java.util.HashMap$Values' to required type 'com.hcb.mc.factory.FactoryList'; nested exception is java.lang.IllegalStateException: Cannot convert value of type [java.util.HashMap$Values] to required type [com.hcb.mc.factory.FactoryList]: no matching editors or conversion strategy found
	at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessPropertyValues(CommonAnnotationBeanPostProcessor.java:306) ~[spring-context-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1106) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:517) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:456) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:294) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:225) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:291) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:193) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:585) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:913) ~[spring-context-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:464) ~[spring-context-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.web.servlet.FrameworkServlet.configureAndRefreshWebApplicationContext(FrameworkServlet.java:631) ~[spring-webmvc-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:588) ~[spring-webmvc-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.web.servlet.FrameworkServlet.createWebApplicationContext(FrameworkServlet.java:645) ~[spring-webmvc-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.web.servlet.FrameworkServlet.initWebApplicationContext(FrameworkServlet.java:508) ~[spring-webmvc-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.web.servlet.FrameworkServlet.initServletBean(FrameworkServlet.java:449) ~[spring-webmvc-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.web.servlet.HttpServletBean.init(HttpServletBean.java:133) [spring-webmvc-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at javax.servlet.GenericServlet.init(GenericServlet.java:160) [servlet-api.jar:3.0.FR]
	at org.apache.catalina.core.StandardWrapper.initServlet(StandardWrapper.java:1266) [catalina.jar:7.0.29]
	at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1185) [catalina.jar:7.0.29]
	at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1080) [catalina.jar:7.0.29]
	at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:5027) [catalina.jar:7.0.29]
	at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5314) [catalina.jar:7.0.29]
	at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150) [catalina.jar:7.0.29]
	at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1559) [catalina.jar:7.0.29]
	at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1549) [catalina.jar:7.0.29]
	at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source) [na:1.6.0_30]
	at java.util.concurrent.FutureTask.run(Unknown Source) [na:1.6.0_30]
	at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source) [na:1.6.0_30]
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [na:1.6.0_30]
	at java.lang.Thread.run(Unknown Source) [na:1.6.0_30]
Caused by: org.springframework.beans.ConversionNotSupportedException: Failed to convert value of type 'java.util.HashMap$Values' to required type 'com.hcb.mc.factory.FactoryList'; nested exception is java.lang.IllegalStateException: Cannot convert value of type [java.util.HashMap$Values] to required type [com.hcb.mc.factory.FactoryList]: no matching editors or conversion strategy found
	at org.springframework.beans.SimpleTypeConverter.convertIfNecessary(SimpleTypeConverter.java:58) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.SimpleTypeConverter.convertIfNecessary(SimpleTypeConverter.java:43) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:759) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:707) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:438) ~[spring-context-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:416) ~[spring-context-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$ResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:549) ~[spring-context-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:150) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:87) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessPropertyValues(CommonAnnotationBeanPostProcessor.java:303) ~[spring-context-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	... 30 common frames omitted
Caused by: java.lang.IllegalStateException: Cannot convert value of type [java.util.HashMap$Values] to required type [com.hcb.mc.factory.FactoryList]: no matching editors or conversion strategy found
	at org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:241) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.TypeConverterDelegate.convertIfNecessary(TypeConverterDelegate.java:92) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	at org.springframework.beans.SimpleTypeConverter.convertIfNecessary(SimpleTypeConverter.java:49) ~[spring-beans-3.1.1.RELEASE.jar:3.1.1.RELEASE]
	... 39 common frames omitted
2014-5-17 17:14:37 org.apache.catalina.core.ApplicationContext log
Warming: StandardWrapper.Throwable

2、 Cause of the problem:

There are two spring IOC configuration files in the project: beanDefines.xml and springMVC.xml .among beanDefines.xml There is no spring component scanning configuration available stay springMVC.xml The configuration of spring component scanning is as follows: < context:component-scan base-package= “com” />. thus beanDefines.xml It works springMVC.xml The configuration of spring component scanning is carried out. beanDefines.xml The bean defined in was not scanned, causing the exception.

 

3、 Solutions:

The two spring IOC configuration files are configured with different ranges of spring component scanning

1.springMVC.xml

	<context:component-scan base-package="com" use-default-filters="false">
	  		<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" />
	</context:component-scan>
           
        <task:annotation-driven/>

2. Biendefen

     <context:component-scan base-package="com" use-default-filters="false">
	  		<context:include-filter type="annotation" expression="org.springframework.stereotype.Service" />
     </context:component-scan>

 

TSLint:object access via string literals is disallowedtslint(no-string-literal)

Today, when adding attributes to objects, tslint reported an error: object access through string text is not allowed (no string text)

const init = {
  id: 'aaa',
  name: 'bbb'
};
init['sex'] = 'ccc';

There are three solutions.

1: It is not allowed to pass strings. You can use variables

const name = 'sex';
const init = {
  id: 'aaa',
  name: 'bbb'
};
init[name] = 'ccc';

2: Let this line of code disable the tslint rule

const init = {
  id: 'aaa',
  name: 'bbb'
};
// tslint:disable-next-line:no-string-literal
init['sex'] = 'ccc';

3: Change tslint.json , disable this rule completely, add the following

"no-string-literal": false,

 

VirtualBox failed to start, prompt failed to open a session for the virtual machine windoze 7

1 environment:

Desktop system: Ubuntu 16.04 * x86

VirtualBox version: 5.0.36

Virtual machine installation system: win7 x86

2 phenomenon: unable to start. The following is the detailed information:

Failed to open a session for the virtual machine Windoze 7.

The device helper structure version has changed.

If you have upgraded VirtualBox recently, please make sure you have terminated all VMs and upgraded any extension packs. If this error persists, try re-installing VirtualBox. (VERR_ PDM_ DEVHLPR3_ VERSION_ MISMATCH).

Result Code: NS_ ERROR_ FAILURE (0x80004005) Component: Console

Interface: IConsole {db7ab4ca-2a3f-4183-9243-c1208da92392}

3 solution

① Reference link https://askubuntu.com/questions/386150/virtualbox-fails-to-start-machine-after-installing-extensions

② The command I used was sudo apt get — re install install VirtualBox ext pack, which successfully solved the problem

After entering the command, you will enter the confirmation interface, use the tab key to select the confirmation button, press enter, and then wait for him to finish the prompt

Successfully installed “Oracle VM VirtualBox Extension Pack”

How to Debug ‘The System cannot Execute the specified program’ message.

How to Debug ‘The System cannot Execute the specified program’ message.

Here is another unofficial preview of a topic that I am going to send out to our UE team later today for publishing on MSDN. As always, standard disclosure that this post is provided “AS IS” with no warranties, and confer no rights and use of this sample is subject to the terms specified at http://www.microsoft.com/info/cpyright.htm  Please feel free to send me any feedback (other the grammar and spelling errors :-)).

 

 
Loading C/C++ application may fail if dependent Visual C++ libraries can not be found. In this section the most common reasons for a C/C++ application failing to load are described with proposed steps to resolve the problems.

 
One of the most common errors messages one may see when dependent Visual C++ DLLs cannot be found is a message box with a text saying “ The system cannot executed the specified program”. Below several things are listed that may help to understand a reason for this error.

    Dependency walker can show most of dependencies for any particular application or Dll. If you see some of DLLs are missing, please insure that these DLLs are correctly installed on the computer on which you are trying to run your application. Manifest is used by the operating system loader to load assemblies that your applications depend on. It can be either embedded inside the binary as a resource or saved as an external file in the application’s local folder. To check whether manifest is embedded inside the binary, open your binary in Visual Studio and browse through resources of this binary. You should be able to find a resource with name RT_MANIFEST. If you cannot find manifest embedded inside the binary, check for external file named something like <binary_name>.<extension>.manifest.

      If manifest is not present, you need to ensure that the linker generates manifest for your project. You need to check linker’s option “Generate manifest” in Project Properties dialog for this project.

 
Note: It is not supported to build VC++ projects without manifest generation. All C/C++ program built in Visual C++ 2005 have to include a manifest describing its dependencies on Visual C++ libraries.

 

    If manifest is embedded inside the binary, ensure that ID of RT_MANIFEST is correct for this type of the binary. Such for applications ID should be equal to 1, for most DLLs ID should be equal to 2. If you found this file export it as a file and open in a XML or just a text editor. For more information on manifest and rules for its deployment, see Manifest. Please be aware that on Windows XP, if an external manifest is present in the application’s local folder, the operating system loader uses this manifest over a manifest embedded inside the binary. On Windows Server 2003, this works vice versa – external manifest is ignored and embedded manifest is used when present. It is recommended for all DLLs to have a manifest embedded inside the binary. External manifest are ignore when DLL is loaded thought LoadLibrary() call. For information see, Assemblies manifest. Check all assemblies enumerated in the manifest for their correct installation of the computer. Each assembly specified in the manifest by its name, version number and processor architecture. If your application depends on side-by-side assemblies, check that these assemblies are installed on this computer properly, so they can be found by the operating system loader that uses steps specified in Searching sequence while searching for dependent assemblies. Remember that 64bit assemblies cannot be loaded in 32bit process and cannot be executed on 32bit operating system.

 
Example:

 
Let’s assume we have an application appl.exe built with Visual C++ 2005. This application may have  its manifest either embedded inside appl.exe as a binary resource RT_MANIFEST with ID equal to 1, or store as an external file appl.exe.manifest. The content of a manifest may be something like below:

 
<assembly xmlns=”urn:schemas-microsoft-com:asm.v1″ manifestVersion=”1.0″>

  <dependency>

    <dependentAssembly>

      <assemblyIdentity type=”win32″ name=”Microsoft.VC80.CRT” version=”8.0.50215.4631″ processorArchitecture=”x86″ publicKeyToken=”1fc8b3b9a1e18e3b”></assemblyIdentity>

    </dependentAssembly>

  </dependency>

</assembly>

 
To the operating system loader this manifest says that appl.exe depends on an assembly named Microsoft.VC80.CRT, version 8.0.50215.4631 and built for 32bit x86 processor architecture.

 
The dependent side-by-side assembly can be installed as either shared assembly or as private assembly. For example, Visual Studio 2005 installs CRT assembly as a shared side-by-side assembly and it can be found in the directory

 
C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50215.4631_x-ww_b7acac55  (assuming C:\Windows is the operating system’s root directory).

 
The assembly manifest for a shared Visual C++ CRT assembly is also installed in

 
C:\WINDOWS\WinSxS\Manifests\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50215.4631_x-ww_b7acac55.manifest

 
And it identifies this assembly and lists its content (DLLs that are part of this assembly):

 
<?xml version=”1.0″ encoding=”UTF-8″ standalone=”yes”?>

<!– Copyright ┬⌐ 1981-2001 Microsoft Corporation –>

<assembly xmlns=”urn:schemas-microsoft-com:asm.v1″ manifestVersion=”1.0″>

      <noInheritable/>

      <assemblyIdentity type=”win32″ name=”Microsoft.VC80.CRT” version=”8.0.50215.4631″ processorArchitecture=”x86″ publicKeyToken=”1fc8b3b9a1e18e3b”/>

      <file name=”msvcr80.dll” hash=”3ca5156e8212449db6c622c3d10f37d9adb12c66″ hashalg=”SHA1″/>

      <file name=”msvcp80.dll” hash=”92cf8a9bb066aea821d324ca4695c69e55b27cff” hashalg=”SHA1″/>

      <file name=”msvcm80.dll” hash=”7daa93e1195940502491c987ff372190bf199395″ hashalg=”SHA1″/>

</assembly>

 
Side-by-side assemblies can also use publisher configuration files, also called policy files, to globally redirect applications and assemblies from using one version of a side-by-side assembly to another version of the same assembly. You can check policies for shared Visual C++ CRT assembly in 

 
C:\WINDOWS\WinSxS\Policies\x86_policy.8.0.Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_x-ww_77c24773\8.0.50215.4631.policy

 
which content is something like

 
</assembly>

<?xml version=”1.0″ encoding=”UTF-8″ standalone=”yes”?>

<!– Copyright ┬⌐ 1981-2001 Microsoft Corporation –>

<assembly xmlns=”urn:schemas-microsoft-com:asm.v1″ manifestVersion=”1.0″>

 
      <assemblyIdentity type=”win32-policy” name=”policy.8.0.Microsoft.VC80.CRT” version=”8.0.50215.4631″ processorArchitecture=”x86″ publicKeyToken=”1fc8b3b9a1e18e3b”/>

      <dependency>

            <dependentAssembly>

                  <assemblyIdentity type=”win32″ name=”Microsoft.VC80.CRT” processorArchitecture=”x86″ publicKeyToken=”1fc8b3b9a1e18e3b”/>

                  <bindingRedirect oldVersion=”8.0.41204.256″ newVersion=”8.0.50215.4631″/>

            </dependentAssembly>

      </dependency>

</assembly>

 
The policy above basically specifies that any application or assembly that asks for version 8.0.41204.256 of this assembly should use version 8.0.50215.4631 of this assembly, which is the current version installed on the system. If  a version of the assembly mentioned in the applications manifest is specified in the policy file, the loader looks for a version of this assembly specified in the manifest in the WinSxS folder, and if this version is not installed load fails. And if assembly of version 8.0.50215.4631 is not installed also, load fails for applications that ask for assembly of version 8.0.41204.256.

 
However CRT assembly can also be installed as a private side-by-side assembly in the applications local folder. If the operating system fails to find CRT or any other assembly as a shared assembly, it starts looking for this assembly as a private assembly. It searches for private assemblies in the following order:
1.                          Check the application local folder for a manifest file with name <assemblyName>.manifest. In this example, the loader tries to find Microsoft.VC80.CRT.manifest file in the same folder as appl.exe.
a.       If the manifest has been found, the loader loads CRT Dll from the application folder.
b.      If CRT DLL is not found, load fails.
2.                          Try to open folder <assemblyName> in appl.exe local folder and if it exists, load manifest file <assemblyName>.manifest from this folder.
a.       If the manifest has been found, the loader loads CRT DLL from <assemblyName> folder.
b.      If CRT DLL is not found, load fails.
See Assembly Searching Sequence for more detailed description on how loader searches for dependent assemblies. If the loader fails to find dependent assembly as a private assembly, load fails and “The system cannot executed the specified program” is display. To resolve this message dependent assemblies and DLLs that are part of them has to be installed on this computer as either private or shared assemblies.

 
Related Sections
About Isolated Applications and Side-by-side Assemblies

Assembly Searching Sequence

Manifest

Publisher configuration files

TypeError: ‘WebElement’ object is not iterable error

problem

TypeError: ‘WebElement’ object is not iterable error

solve

At first, I thought it was an element problem. Later, I looked at the method carefully because
find should be used_ elements_by_XPath
instead of find_element_by_xpath

for citys in driver.find_elements_by_xpath('/html/body/div[6]/dl'):

instead of

for citys in driver.find_element_by_xpath('/html/body/div[6]/dl'):

The key “target densitydpi” is not supported

Run a web page and find the key “target density Pi” is not supported in the log

After checking the relevant information, it is found that the target densitydpi attribute has been abandoned. Specific reference https://petelepage.com/blog/2013/02/viewport-target-densitydpi-support-is-being-deprecated/

“Support for target densitydpi in the viewport meta tag was recently removed from WebKit and with chrome for Android moving forward to current revisions on WebKit, this change is now rolling out in Android.”

In other words, target density PI has been enabled.

At the same time, this blog also gives people a usage, that is, in WebKit, if you need to put target density DPI = device DPI.

My strategy is simpler. When I find that target density Pi is useless in the web page, I delete the relevant attributes directly in the web page.

Uncaught Error: Call to undefined function mysql_select_db()

Reference link:
1 https://stackoverflow.com/questions/40650747/uncaught-error-call-to-undefined-function-mysql-select-db
The solutions are as follows:

<?php  
$username="root";  
$password="namungoona";  
$hostname = "localhost";  
//connection string with database  
$dbhandle = mysqli_connect($hostname, $username, $password)  
or die("Unable to connect to MySQL");  
echo "";  
// connect with database  
$selected = mysqli_select_db($dbhandle, "police")  
or die("Could not select examples");  
//query fire  
$result = mysqli_query($dbhandle,"select * from News;");  
$json_response = array();  
// fetch data in array format  
while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {  
// Fetch data of Fname Column and store in array of row_array
$row_array['Headlines'] = $row['Headlines'];  
$row_array['Details'] = $row['Details']; 
$row_array['NewsPhoto'] = $row['NewsPhoto']; 

//push the values in the array  
array_push($json_response,$row_array);  
}  
//  
echo json_encode($json_response); 
mysqli_free_result($result);
?>

Import error: no module named cryptography.hazmat.backends

Install cryptography from the command line

pip install  cryptography

If sslerror: (‘the read operation timed out ‘), re execute the above command.

If there is a problem of requirement already satisfied (use — upgrade to upgrade): Cryptography in C: / / python27 / lib / site packages, execute the following statement:

pip install cryptography –upgrade